Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit cf3aeb2

Browse files
committed
Add stdint.h include
1 parent 355e05a commit cf3aeb2

File tree

1 file changed

+5
-1
lines changed
  • src/backend/utils/adt

1 file changed

+5
-1
lines changed

src/backend/utils/adt/xml.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $PostgreSQL: pgsql/src/backend/utils/adt/xml.c,v 1.29 2007/02/16 07:46:54 petere Exp $
10+
* $PostgreSQL: pgsql/src/backend/utils/adt/xml.c,v 1.30 2007/02/16 10:42:31 petere Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -40,6 +40,10 @@
4040

4141
#include "postgres.h"
4242

43+
#ifdef HAVE_STDINT_H
44+
#include <stdint.h>
45+
#endif
46+
4347
#ifdef USE_LIBXML
4448
#include <libxml/chvalid.h>
4549
#include <libxml/parser.h>

0 commit comments

Comments
 (0)