diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2012-10-08 11:41:11 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2012-10-08 12:13:39 +0200 |
commit | 1ab2935061bc800f008aba6c423ab9fe69c4cac0 (patch) | |
tree | a5eb4636cc637882107d01397d2f7591b9ab0fdd | |
parent | f1ecb7ef7f5703fc156b8ab2ca153d774c39ec7a (diff) | |
download | glibc-1ab2935061bc800f008aba6c423ab9fe69c4cac0.tar glibc-1ab2935061bc800f008aba6c423ab9fe69c4cac0.tar.gz glibc-1ab2935061bc800f008aba6c423ab9fe69c4cac0.tar.bz2 glibc-1ab2935061bc800f008aba6c423ab9fe69c4cac0.zip |
Fix missing include in sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2012-10-08 Andreas Schwab <schwab@linux-m68k.org> + + * sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c: Include + <stdint.h>. + 2012-10-06 David S. Miller <davem@davemloft.net> * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: On 32-bit, clear diff --git a/sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c b/sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c index f62ed86055..5559dd5c0c 100644 --- a/sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c +++ b/sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c @@ -16,6 +16,7 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ +#include <stdint.h> #include <libc-internal.h> uint64_t |