Use PRIu64 instead of %llu, where appropriate
[profile/ivi/syslinux.git] / memdump / stdlib.h
1 #ifndef STDLIB_H
2 #define STDLIB_H
3
4 #define NULL ((void *)0)
5
6 typedef int ssize_t;
7 typedef unsigned int size_t;
8
9 void __attribute__ ((noreturn)) exit(int);
10
11 void *malloc(size_t);
12 void free(void *);
13
14 #endif