summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--configure.in4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e62a7503..e890279c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-10-17 Martin Baulig <martin@home-of-linux.org>
+
+ * configure.in: Fixed typedef syntax for glibtop-config.h.
+ Thanks to Drazen Kacar for pointing this out.
+
1999-10-16 Martin Baulig <martin@home-of-linux.org>
* LIBGTOP-VERSION: Set version number to 1.1.2, binary age 2,
diff --git a/configure.in b/configure.in
index de90045e..fda492f2 100644
--- a/configure.in
+++ b/configure.in
@@ -466,7 +466,7 @@ _______EOF
cat >> $outfile <<\_______EOF
#ifndef u_int64_t
-typedef u_int64_t unsigned long long int
+typedef unsigned long long int u_int64_t;
#endif
_______EOF
fi
@@ -476,7 +476,7 @@ _______EOF
cat >> $outfile <<\_______EOF
#ifndef int64_t
-typedef int64_t signed long long int
+typedef signed long long int int64_t;
#endif
_______EOF
fi