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.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/stdlib/div_t.c b/src/stdlib/div_t.c
index 60acd660..7d17ddf2 100644
--- a/src/stdlib/div_t.c
+++ b/src/stdlib/div_t.c
@@ -1,12 +1,10 @@
-#include <stdlib.h>
-
-/** quotient and remainder **/
-
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.