summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-05-28 01:56:08 +0000
committerRob Landley <rob@landley.net>2006-05-28 01:56:08 +0000
commit81dab2cf834cb5369bd70feaf4ff45363dba12dd (patch)
treee89f8ea7219f26fd8b9b4feb1102cbf567099349 /include
parent0fbe7ddbdda3917dd23004b7f88f772a63300f0c (diff)
downloadbusybox-w32-81dab2cf834cb5369bd70feaf4ff45363dba12dd.tar.gz
busybox-w32-81dab2cf834cb5369bd70feaf4ff45363dba12dd.tar.bz2
busybox-w32-81dab2cf834cb5369bd70feaf4ff45363dba12dd.zip
Fix hdparm to use PRIu64 instead of typecasting to long long (which is 128 bits
on 64 bit platforms), and move #include <inttypes.h> to libbb.h.
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index fdb20227d..5f2309a25 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -24,6 +24,7 @@
24#include <netinet/in.h> 24#include <netinet/in.h>
25#include <netdb.h> 25#include <netdb.h>
26 26
27#include <inttypes.h>
27#include <sys/time.h> 28#include <sys/time.h>
28 29
29#include "bb_config.h" 30#include "bb_config.h"