summaryrefslogtreecommitdiff
path: root/src/inttypes
diff options
context:
space:
mode:
Diffstat (limited to 'src/inttypes')
-rw-r--r--src/inttypes/imaxabs.c2
-rw-r--r--src/inttypes/imaxdiv.c2
-rw-r--r--src/inttypes/strtoimax.c6
-rw-r--r--src/inttypes/strtoumax.c6
-rw-r--r--src/inttypes/wcstoimax.c6
-rw-r--r--src/inttypes/wcstoumax.c6
6 files changed, 14 insertions, 14 deletions
diff --git a/src/inttypes/imaxabs.c b/src/inttypes/imaxabs.c
index be184ebf..0ea60644 100644
--- a/src/inttypes/imaxabs.c
+++ b/src/inttypes/imaxabs.c
@@ -1,4 +1,4 @@
-#include "stddef.h"
+#include <stddef.h>
#include <inttypes.h>
/** absolute value **/
diff --git a/src/inttypes/imaxdiv.c b/src/inttypes/imaxdiv.c
index a213f9da..eb99f2cf 100644
--- a/src/inttypes/imaxdiv.c
+++ b/src/inttypes/imaxdiv.c
@@ -1,4 +1,4 @@
-#include "stddef.h"
+#include <stddef.h>
#include <inttypes.h>
/** calculate quotient and remainder **/
diff --git a/src/inttypes/strtoimax.c b/src/inttypes/strtoimax.c
index 36032a9d..9a42b614 100644
--- a/src/inttypes/strtoimax.c
+++ b/src/inttypes/strtoimax.c
@@ -1,7 +1,7 @@
-#include "stddef.h"
+#include <stddef.h>
+#include <ctype.h>
+#include <errno.h>
#include <inttypes.h>
-#include "ctype.h"
-#include "errno.h"
intmax_t strtoimax(const char * restrict nptr, char ** restrict endptr, int base)
{
diff --git a/src/inttypes/strtoumax.c b/src/inttypes/strtoumax.c
index 8bfc8f36..f8017371 100644
--- a/src/inttypes/strtoumax.c
+++ b/src/inttypes/strtoumax.c
@@ -1,7 +1,7 @@
-#include "stddef.h"
+#include <stddef.h>
+#include <ctype.h>
+#include <errno.h>
#include <inttypes.h>
-#include "ctype.h"
-#include "errno.h"
uintmax_t strtoumax(const char *restrict nptr, char ** restrict endptr, int base)
{
diff --git a/src/inttypes/wcstoimax.c b/src/inttypes/wcstoimax.c
index 061e4365..21c0a56d 100644
--- a/src/inttypes/wcstoimax.c
+++ b/src/inttypes/wcstoimax.c
@@ -1,7 +1,7 @@
-#include "stddef.h"
+#include <stddef.h>
+#include <errno.h>
#include <inttypes.h>
-#include "wctype.h"
-#include "errno.h"
+#include <wctype.h>
#define isspace iswspace
diff --git a/src/inttypes/wcstoumax.c b/src/inttypes/wcstoumax.c
index 4ace23d0..3ffbf5d8 100644
--- a/src/inttypes/wcstoumax.c
+++ b/src/inttypes/wcstoumax.c
@@ -1,7 +1,7 @@
-#include "stddef.h"
+#include <stddef.h>
+#include <errno.h>
#include <inttypes.h>
-#include "errno.h"
-#include "wctype.h"
+#include <wctype.h>
#define isspace iswspace