Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 985 → Rev 978

/uspace/trunk/libc/include/string.h
File deleted
/uspace/trunk/libc/include/errno.h
File deleted
/uspace/trunk/libc/include/stdlib.h
File deleted
/uspace/trunk/libc/include/sys/types.h
File deleted
/uspace/trunk/libc/include/unistd.h
36,6 → 36,5
extern ssize_t write(int fd, const void * buf, size_t count);
extern void _exit(int status);
void * mremap(void *address, size_t size, unsigned long flags);
void *sbrk(ssize_t incr);
 
#endif
/uspace/trunk/libc/include/stdio.h
36,6 → 36,5
extern int puts(const char * str);
 
extern int printf(const char *fmt, ...);
#define fprintf(f, fmt, ...) printf(fmt, ##__VA_ARGS__)
 
#endif
/uspace/trunk/libc/include/malloc.h
47,7 → 47,6
#define dlmalloc_stats malloc_stats
#define dlmalloc_usable_size malloc_usable_size
#define dlmalloc_footprint malloc_footprint
#define dlmalloc_max_footprint malloc_max_footprint
#define dlindependent_calloc independent_calloc
#define dlindependent_comalloc independent_comalloc
#endif /* USE_DL_PREFIX */
163,8 → 162,7
Even if locks are otherwise defined, this function does not use them,
so results might not be up to date.
*/
size_t dlmalloc_footprint(void);
size_t dlmalloc_max_footprint(void);
size_t dlmalloc_footprint();
 
#if !NO_MALLINFO
/*
393,7 → 391,7
malloc_stats prints only the most commonly interesting statistics.
More information can be obtained by calling mallinfo.
*/
void dlmalloc_stats(void);
void dlmalloc_stats();
 
#endif /* !ONLY_MSPACES */