Browse Source

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

Bernhard Reutner-Fischer 17 năm trước cách đây
mục cha
commit
72139db7f1
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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)) {