diff options
Diffstat (limited to 'src/stdlib/lldiv_t.c')
-rw-r--r-- | src/stdlib/lldiv_t.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/stdlib/lldiv_t.c b/src/stdlib/lldiv_t.c new file mode 100644 index 00000000..e7e72e6b --- /dev/null +++ b/src/stdlib/lldiv_t.c @@ -0,0 +1,10 @@ +#include <stdlib.h> + +typedef struct { + long long int quot; + long long int rem; +} lldiv_t; + +/* +STDC(199901) +*/ |