summaryrefslogtreecommitdiff
path: root/src/stdlib/ldiv_t.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/ldiv_t.c')
-rw-r--r--src/stdlib/ldiv_t.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/stdlib/ldiv_t.c b/src/stdlib/ldiv_t.c
deleted file mode 100644
index 0dac2bb0..00000000
--- a/src/stdlib/ldiv_t.c
+++ /dev/null
@@ -1,15 +0,0 @@
-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)
-*/