summaryrefslogtreecommitdiffhomepage
path: root/stc/cstring.h
diff options
context:
space:
mode:
authorTylo <[email protected]>2020-06-15 21:20:29 +0200
committerTylo <[email protected]>2020-06-15 21:20:29 +0200
commit2bcc2fa8f094de7a4a7d78093dfe62023499e4d8 (patch)
tree78bac1b58536221f87275e98b6c397dfe2342a6e /stc/cstring.h
parentd5d547b7315c9deae74ead71ef434e9f25c674f7 (diff)
downloadSTC-modified-2bcc2fa8f094de7a4a7d78093dfe62023499e4d8.tar.gz
STC-modified-2bcc2fa8f094de7a4a7d78093dfe62023499e4d8.zip
Fixed including standard include files.
Diffstat (limited to 'stc/cstring.h')
-rw-r--r--stc/cstring.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/stc/cstring.h b/stc/cstring.h
index cf635be8..9cbdcfb5 100644
--- a/stc/cstring.h
+++ b/stc/cstring.h
@@ -23,14 +23,10 @@
#ifndef CSTRING__H__
#define CSTRING__H__
-#include <stdlib.h> /* alloca */
-#include <malloc.h>
-#include <stddef.h>
-#include <stdbool.h>
+#include <stdlib.h> /* alloca, malloc */
#include <string.h>
-#include <stdint.h>
#include <stdarg.h>
-#include <stdio.h>
+#include <stdio.h> /* vsnprintf */
#include "cdefs.h"