- Replaced ctype.h with internal\ctype.h.

On higher optimisation levels like '-O6', gcc does try to
  import some variables which only exist in msvcrt.dll.

svn path=/trunk/; revision=7049
This commit is contained in:
Hartmut Birr 2003-12-14 18:06:44 +00:00
parent 511cae90ca
commit 55bc18d383
6 changed files with 11 additions and 11 deletions

View file

@ -1,4 +1,4 @@
/* $Id: ctype.c,v 1.12 2003/07/11 01:23:15 royce Exp $
/* $Id: ctype.c,v 1.13 2003/12/14 18:06:44 hbirr Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -11,7 +11,7 @@
* all functions to use ctype table
*/
#undef __MSVCRT__
#include <ctype.h>
#include <internal/ctype.h>
#undef _pctype

View file

@ -1,4 +1,4 @@
/* $Id: sprintf.c,v 1.13 2003/09/02 18:19:41 hbirr Exp $
/* $Id: sprintf.c,v 1.14 2003/12/14 18:06:44 hbirr Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -23,7 +23,7 @@
#include <ddk/ntddk.h>
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#include <internal/ctype.h>
#include <string.h>
#include <limits.h>

View file

@ -1,4 +1,4 @@
/* $Id: stdlib.c,v 1.8 2003/07/11 01:23:16 royce Exp $
/* $Id: stdlib.c,v 1.9 2003/12/14 18:06:44 hbirr Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -12,7 +12,7 @@
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include <ctype.h>
#include <internal/ctype.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>

View file

@ -10,7 +10,7 @@
/* INCLUDES *****************************************************************/
#include <ctype.h>
#include <internal/ctype.h>
#include <string.h>
/* FUNCTIONS *****************************************************************/

View file

@ -1,4 +1,4 @@
/* $Id: swprintf.c,v 1.11 2003/09/02 18:19:41 hbirr Exp $
/* $Id: swprintf.c,v 1.12 2003/12/14 18:06:44 hbirr Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -25,7 +25,7 @@
#include <ddk/ntddk.h>
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#include <internal/ctype.h>
#include <wchar.h>
#include <limits.h>

View file

@ -1,4 +1,4 @@
/* $Id: unicode.c,v 1.32 2003/09/04 06:41:35 vizzini Exp $
/* $Id: unicode.c,v 1.33 2003/12/14 18:06:44 hbirr Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -11,7 +11,7 @@
*/
#include <ddk/ntddk.h>
#include <ctype.h>
#include <internal/ctype.h>
#include <ntos/minmax.h>
#include <internal/pool.h>
#include <internal/nls.h>