diff options
author | Carlos O'Donell <carlos@codesourcery.com> | 2012-02-27 22:10:17 -0500 |
---|---|---|
committer | Carlos O'Donell <carlos@codesourcery.com> | 2012-02-27 22:31:39 -0500 |
commit | 433f48bf3ba7120b9a16ed4816d630f250ea4d92 (patch) | |
tree | 38e1071f76647b0a3914ea57775df7dfa0494fa9 /stdlib/fmtmsg.c | |
parent | d674b76d0e46202ab8fd582b9d44d918d5fdd3e7 (diff) | |
download | glibc-433f48bf3ba7120b9a16ed4816d630f250ea4d92.zip glibc-433f48bf3ba7120b9a16ed4816d630f250ea4d92.tar.gz glibc-433f48bf3ba7120b9a16ed4816d630f250ea4d92.tar.bz2 |
BZ #3992: stdlib/fmtmsg.c: missing stdint.h include.
Use of uint32_t requires stdint.h.
Diffstat (limited to 'stdlib/fmtmsg.c')
-rw-r--r-- | stdlib/fmtmsg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/fmtmsg.c b/stdlib/fmtmsg.c index 4c02302..69947e1 100644 --- a/stdlib/fmtmsg.c +++ b/stdlib/fmtmsg.c @@ -1,5 +1,4 @@ -/* Copyright (C) 1997,1999-2003,2005,2006,2011,2012 - Free Software Foundation, Inc. +/* Copyright (C) 1997-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -20,6 +19,7 @@ #include <fmtmsg.h> #include <bits/libc-lock.h> #include <stdio.h> +#include <stdint.h> #include <stdlib.h> #include <string.h> #include <sys/syslog.h> |