Explorar o código

- Avoid warning about undefined preprocessor token. No obj-code changes.

Bernhard Reutner-Fischer %!s(int64=17) %!d(string=hai) anos
pai
achega
72139db7f1
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      libc/string/strncat.c

+ 1 - 1
libc/string/strncat.c

@@ -21,7 +21,7 @@ Wchar *Wstrncat(Wchar * __restrict s1, register const Wchar * __restrict s2,
 
 	while (*s++);
 	--s;
-#if __BCC__
+#ifdef __BCC__
 	while (n-- && ((*s = *s2++) != 0)) ++s;
 #else
 	while (n && ((*s = *s2++) != 0)) {