mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-11 04:07:35 +08:00
Remove <values.h> inclusions, no-longer-needed MAXINT definitions.
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
* or in config.h afterwards. Of course, if you edit config.h, then your
|
||||
* changes will be overwritten the next time you run configure.
|
||||
*
|
||||
* $Id: config.h.in,v 1.127 2000/07/14 16:39:35 petere Exp $
|
||||
* $Id: config.h.in,v 1.128 2000/07/28 02:13:40 tgl Exp $
|
||||
*/
|
||||
|
||||
#ifndef CONFIG_H
|
||||
@ -327,9 +327,6 @@
|
||||
/* Set to 1 if you have <termios.h> */
|
||||
#undef HAVE_TERMIOS_H
|
||||
|
||||
/* Set to 1 if you have <values.h> */
|
||||
#undef HAVE_VALUES_H
|
||||
|
||||
/* Set to 1 if you have <sys/pstat.h> */
|
||||
#undef HAVE_SYS_PSTAT_H
|
||||
|
||||
|
||||
@ -5,16 +5,13 @@
|
||||
|
||||
#include <math.h>
|
||||
#include <limits.h>
|
||||
#ifdef HAVE_VALUES_H
|
||||
#include <values.h>
|
||||
#endif
|
||||
|
||||
#include "utils/builtins.h"
|
||||
|
||||
|
||||
#define HEXDIG(z) (z)<10 ? ((z)+'0') : ((z)-10+'A')
|
||||
#define HEXDIG(z) ((z)<10 ? ((z)+'0') : ((z)-10+'A'))
|
||||
|
||||
/* Modeled on struct varlena from postgres.h, bu data type is bits8 */
|
||||
/* Modeled on struct varlena from postgres.h, but data type is bits8 */
|
||||
struct varbita
|
||||
{
|
||||
int32 vl_len;
|
||||
|
||||
Reference in New Issue
Block a user