From f2cd6a6d2500d0cac80a4f2532b59ef6cb562135 Mon Sep 17 00:00:00 2001 From: victor Date: Sun, 1 Jul 2007 12:01:40 +0000 Subject: [PATCH] git-svn-id: svn://kolibrios.org@560 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/develop/metcc/trunk/libc/include/stdio.h | 2 +- programs/develop/metcc/trunk/libc/include/stdlib.h | 2 +- programs/develop/metcc/trunk/libc/include/string.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/programs/develop/metcc/trunk/libc/include/stdio.h b/programs/develop/metcc/trunk/libc/include/stdio.h index 963f18ddf..2336f4df7 100644 --- a/programs/develop/metcc/trunk/libc/include/stdio.h +++ b/programs/develop/metcc/trunk/libc/include/stdio.h @@ -1,7 +1,7 @@ #ifndef stdio_h #define stdio_h #include "mesys.h" -#define NULL (void*)0 +#define NULL ((void*)0) typedef struct { char* buffer; int buffersize; diff --git a/programs/develop/metcc/trunk/libc/include/stdlib.h b/programs/develop/metcc/trunk/libc/include/stdlib.h index 9955d4adf..153550f83 100644 --- a/programs/develop/metcc/trunk/libc/include/stdlib.h +++ b/programs/develop/metcc/trunk/libc/include/stdlib.h @@ -6,4 +6,4 @@ extern int atoi(char *s); extern char tolower(char c); extern char toupper(char c); extern void itoab(int n,char* s,int b); -extern void itoa(int n,char* s); \ No newline at end of file +extern void itoa(int n,char* s); diff --git a/programs/develop/metcc/trunk/libc/include/string.h b/programs/develop/metcc/trunk/libc/include/string.h index aa876837e..07a49a1c5 100644 --- a/programs/develop/metcc/trunk/libc/include/string.h +++ b/programs/develop/metcc/trunk/libc/include/string.h @@ -22,4 +22,4 @@ extern char* strstr(const char*,const char*); extern char* strtok(char*,const char*); extern int strxfrm(char*,const char*,int); extern char* strdup(const char*); -#endif \ No newline at end of file +#endif