summaryrefslogtreecommitdiff
path: root/stdlib/fmtmsg.c
diff options
context:
space:
mode:
authorCarlos O'Donell <carlos@codesourcery.com>2012-02-27 22:10:17 -0500
committerCarlos O'Donell <carlos@codesourcery.com>2012-02-27 22:31:39 -0500
commit433f48bf3ba7120b9a16ed4816d630f250ea4d92 (patch)
tree38e1071f76647b0a3914ea57775df7dfa0494fa9 /stdlib/fmtmsg.c
parentd674b76d0e46202ab8fd582b9d44d918d5fdd3e7 (diff)
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/fmtmsg.c b/stdlib/fmtmsg.c
index 4c02302851..69947e1cf1 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>