This repository has been archived on 2023-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RescueBootCD/extra/syslinux-3.09/dos/stdlib.h

13 lines
178 B
C

#ifndef STDLIB_H
#define STDLIB_H
typedef int ssize_t;
typedef unsigned int size_t;
void __attribute__((noreturn)) exit(int);
void *malloc(size_t);
void free(void *);
#endif