diff options
author | Elliott Hughes <enh@google.com> | 2013-02-19 21:58:18 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-02-19 21:58:18 +0000 |
commit | 593abb7b593a34d501c90512953a7368add6d185 (patch) | |
tree | a8a8578f639d377ea78e31ae03e6f542df0db328 | |
parent | eeecff7293efd6becf3b07b8d24cada3d820c894 (diff) | |
parent | 61ba9b526bf62a5a6ab717497d34e2f569fc0116 (diff) | |
download | android_bionic-593abb7b593a34d501c90512953a7368add6d185.tar.gz android_bionic-593abb7b593a34d501c90512953a7368add6d185.tar.bz2 android_bionic-593abb7b593a34d501c90512953a7368add6d185.zip |
Merge "stdlib: atexit: include <sys/cdefs.h>"
-rw-r--r-- | libc/stdlib/atexit.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/stdlib/atexit.h b/libc/stdlib/atexit.h index 39df2e130..4b3e5aba4 100644 --- a/libc/stdlib/atexit.h +++ b/libc/stdlib/atexit.h @@ -30,6 +30,8 @@ * */ +#include <sys/cdefs.h> + struct atexit { struct atexit *next; /* next in list */ int ind; /* next index in this table */ |