1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-07 06:43:00 +03:00

BZ #3992: stdlib/fmtmsg.c: missing stdint.h include.

Use of uint32_t requires stdint.h.
This commit is contained in:
Carlos O'Donell
2012-02-27 22:10:17 -05:00
parent d674b76d0e
commit 433f48bf3b
3 changed files with 12 additions and 7 deletions

View File

@@ -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>