update for HEAD-2003050101
[reactos.git] / lib / crtdll / ctype / toascii.c
index 86d8ff3..f26d5af 100644 (file)
@@ -1,9 +1,9 @@
 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
 
-#include <crtdll/ctype.h>
+#include <msvcrt/ctype.h>
 
 
 int __toascii(int c)
 {
-  return ((unsigned)(c) & 0x7F );
+    return((unsigned)(c) & 0x7F);
 }