summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux-4.02/memdump/stdlib.h
blob: 5b14ec8da42baaff20dd6850f99268d28ec1eb0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef STDLIB_H
#define STDLIB_H

#define NULL ((void *)0)

typedef int ssize_t;
typedef unsigned int size_t;

void __attribute__ ((noreturn)) exit(int);

void *malloc(size_t);
void free(void *);

#endif