com32/include/stdlib.h

8 lines
98 B
C
Raw Permalink Normal View History

2024-01-10 11:13:45 -08:00
#ifndef STDLIB
#define STDLIB
#include <stdint.h>
int abs(int i);
char* itox(uint32_t x);
#endif