diff options
Diffstat (limited to 'src/stdlib/ldiv_t.h')
| -rw-r--r-- | src/stdlib/ldiv_t.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/stdlib/ldiv_t.h b/src/stdlib/ldiv_t.h new file mode 100644 index 00000000..0dac2bb0 --- /dev/null +++ b/src/stdlib/ldiv_t.h @@ -0,0 +1,15 @@ +typedef struct { + long int quot; + long int rem; +} ldiv_t; + +/** long quotient and remainder **/ + +/*** +is the type returned by FUNCTION(ldiv) to hold both the quotient and remainder +of an integer division. +***/ + +/* +STDC(1) +*/ |
