summaryrefslogtreecommitdiff
path: root/libc/string/x86_64/bzero.S
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/x86_64/bzero.S')
-rw-r--r--libc/string/x86_64/bzero.S7
1 files changed, 5 insertions, 2 deletions
diff --git a/libc/string/x86_64/bzero.S b/libc/string/x86_64/bzero.S
index b6e41fb0f..4d179ec4e 100644
--- a/libc/string/x86_64/bzero.S
+++ b/libc/string/x86_64/bzero.S
@@ -1,2 +1,5 @@
-#define memset bzero
-#include "memset.S"
+#include <features.h>
+#ifdef __UCLIBC_SUSV3_LEGACY__
+# define memset bzero
+# include "memset.S"
+#endif