Ver Fonte

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

Bernhard Reutner-Fischer há 17 anos atrás
pai
commit
72139db7f1
1 ficheiros alterados com 1 adições e 1 exclusões
  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)) {