chiark / gitweb /
basic: include only what we use
[elogind.git] / src / basic / hexdecoct.c
index 7e84550b6d49770175ac478be79768ea10a38ad0..f30e028f45b51baabf152a0fe6112b0bec625c44 100644 (file)
 ***/
 
 #include <ctype.h>
-#include <inttypes.h>
+#include <errno.h>
+#include <stdint.h>
+#include <stdlib.h>
 
 #include "alloc-util.h"
 #include "hexdecoct.h"
-#include "util.h"
+#include "macro.h"
 
 char octchar(int x) {
         return '0' + (x & 7);