fixed compiler error: removed reference to crtdll

svn path=/trunk/; revision=3793
This commit is contained in:
guido 2002-11-25 23:53:38 +00:00
parent 8d09bf7839
commit 56b706f3e0
2 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
#include <crtdll/stdlib.h>
#include <stdlib.h>
int
abs(int j)

View file

@ -1,6 +1,6 @@
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
#include <crtdll/string.h>
#include <crtdll/ctype.h>
#include <string.h>
#include <ctype.h>
int
_stricmp(const char *s1, const char *s2)