Przeglądaj źródła

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

Bernhard Reutner-Fischer 17 lat temu
rodzic
commit
72139db7f1
1 zmienionych plików z 1 dodań i 1 usunięć
  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)) {