Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6428 → Rev 6429

/programs/develop/ktcc/trunk/source/tcclib.h
18,6 → 18,7
int atoi(const char *nptr);
long int strtol(const char *nptr, char **endptr, int base);
unsigned long int strtoul(const char *nptr, char **endptr, int base);
void exit(int);
 
/* stdio.h */
typedef struct __FILE FILE;
38,6 → 39,7
char *gets(char *s);
int ungetc(int c, FILE *stream);
int fflush(FILE *stream);
int putchar (int c);
 
int printf(const char *format, ...);
int fprintf(FILE *stream, const char *format, ...);
63,6 → 65,7
void *memmove(void *dest, const void *src, size_t n);
void *memset(void *s, int c, size_t n);
char *strdup(const char *s);
size_t strlen(const char *s);
 
/* dlfcn.h */
#define RTLD_LAZY 0x001