about summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-06-07 23:06:04 -0400
committerRich Felker <dalias@aerifal.cx>2012-06-07 23:06:04 -0400
commit1429ce9ba2425b8abeefc311d56db5efe801d9d2 (patch)
tree47e321bf0231f9c2cc2438d09a24730fca24e45f /include
parente86b18a63eb6b65e18e761212f69a0abc16b50b1 (diff)
downloadmusl-1429ce9ba2425b8abeefc311d56db5efe801d9d2.tar.gz
musl-1429ce9ba2425b8abeefc311d56db5efe801d9d2.tar.xz
musl-1429ce9ba2425b8abeefc311d56db5efe801d9d2.zip
fix sysinfo, try 2. it seems to work this time.
Diffstat (limited to 'include')
-rw-r--r--include/sys/sysinfo.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/sys/sysinfo.h b/include/sys/sysinfo.h
index af11b6a0..6a3931e5 100644
--- a/include/sys/sysinfo.h
+++ b/include/sys/sysinfo.h
@@ -10,15 +10,15 @@ extern "C" {
 struct sysinfo {
 	unsigned long uptime;
 	unsigned long loads[3];
-	unsigned long long totalram;
-	unsigned long long freeram;
-	unsigned long long sharedram;
-	unsigned long long bufferram;
-	unsigned long long totalswap;
-	unsigned long long freeswap;
+	unsigned long totalram;
+	unsigned long freeram;
+	unsigned long sharedram;
+	unsigned long bufferram;
+	unsigned long totalswap;
+	unsigned long freeswap;
 	unsigned short procs, pad;
-	unsigned long long totalhigh;
-	unsigned long long freehigh;
+	unsigned long totalhigh;
+	unsigned long freehigh;
 	unsigned mem_unit;
 	char __reserved[256];
 };
@@ -26,8 +26,8 @@ struct sysinfo {
 int sysinfo (struct sysinfo *);
 int get_nprocs_conf (void);
 int get_nprocs (void);
-long long get_phys_pages (void);
-long long get_avphys_pages (void);
+long get_phys_pages (void);
+long get_avphys_pages (void);
 
 #ifdef __cplusplus
 }