summaryrefslogtreecommitdiff
path: root/src/stdlib/div_t.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/div_t.c')
-rw-r--r--src/stdlib/div_t.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/stdlib/div_t.c b/src/stdlib/div_t.c
deleted file mode 100644
index 7d17ddf2..00000000
--- a/src/stdlib/div_t.c
+++ /dev/null
@@ -1,15 +0,0 @@
-typedef struct {
- int quot;
- int rem;
-} div_t;
-
-/** quotient and remainder **/
-
-/***
-is the type returned by FUNCTION(div) to hold both the quotient and remainder
-of an integer division.
-***/
-
-/*
-STDC(1)
-*/