summaryrefslogtreecommitdiff
path: root/absl/time/clock_test.cc
diff options
context:
space:
mode:
authorGravatar Milad Fa <46688537+miladfarca@users.noreply.github.com>2021-09-23 16:23:02 -0400
committerGravatar GitHub <noreply@github.com>2021-09-23 16:23:02 -0400
commitf3a42743db4df4c98e1df690045577c775daf20b (patch)
treee63f48001f0d1e339d9c1b95fcdbf2c6da4edcd5 /absl/time/clock_test.cc
parent020619c4aa68d13dfbdd6107a373912bb5ea85af (diff)
Initial support for AIX (#1021)
* Init support of AIX * make sysinfo change AIX specific * Relocate TBF * Add comments for .csect psudo op.
Diffstat (limited to 'absl/time/clock_test.cc')
-rw-r--r--absl/time/clock_test.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/absl/time/clock_test.cc b/absl/time/clock_test.cc
index 4bcfc6bc..e6f627b3 100644
--- a/absl/time/clock_test.cc
+++ b/absl/time/clock_test.cc
@@ -18,6 +18,8 @@
#if defined(ABSL_HAVE_ALARM)
#include <signal.h>
#include <unistd.h>
+#elif defined(_AIX)
+typedef void (*sig_t)(int);
#elif defined(__linux__) || defined(__APPLE__)
#error all known Linux and Apple targets have alarm
#endif