소스 검색

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

Bernhard Reutner-Fischer 17 년 전
부모
커밋
72139db7f1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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)) {