Skip to content

Commit c1392c5

Browse files
committed
Another one that should be including limits.h vs machine/limits.h
1 parent f504e5a commit c1392c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/postmaster/postmaster.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.31 1997/01/14 08:05:19 bryanh Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.32 1997/01/22 04:45:45 scrappy Exp $
1414
*
1515
* NOTES
1616
*
@@ -54,7 +54,7 @@
5454
#include <sys/time.h>
5555
#include <sys/socket.h>
5656
#if defined(USE_LIMITS_H)
57-
# include <machine/limits.h>
57+
# include <limits.h>
5858
# define MAXINT INT_MAX
5959
#else
6060
# include <values.h>

0 commit comments

Comments
 (0)