OrionLibC
Barry Importing existing Orion LibC 03048a9 (2 years, 2 months ago)diff --git a/include/inttypes.h b/include/inttypes.h new file mode 100644 index 0000000..855bf37 --- /dev/null +++ b/include/inttypes.h @@ -0,0 +1,13 @@ +#ifndef _INTTYPES_H +#define _INTTYPES_H + +#include <stdint.h> +#include <stddef.h> + +/* Structure for the imaxdiv() function */ +typedef struct { + __extension__ long long int quot; + __extension__ long long int rem; +} imaxdiv_t; + +#endif