git-svn-id: svn://kolibrios.org@560 a494cfbc-eb01-0410-851d-a64ba20cac60

This commit is contained in:
victor 2007-07-01 12:01:40 +00:00
parent 3be4fd7a4b
commit f2cd6a6d25
3 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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);
extern void itoa(int n,char* s);

View File

@ -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
#endif