1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-02 11:44:50 +03:00

Add string.h for strerror() prototype

This commit is contained in:
Marc G. Fournier 1997-03-26 03:27:04 +00:00
parent 5b63c6b63a
commit 7cbe19384f

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.12 1997/03/18 21:40:41 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.13 1997/03/26 03:27:04 scrappy Exp $
* *
* NOTE * NOTE
* XXX this code needs improvement--check for state violations and * XXX this code needs improvement--check for state violations and
@ -17,6 +17,7 @@
*/ */
#include <stdio.h> /* XXX use own I/O routines */ #include <stdio.h> /* XXX use own I/O routines */
#include <errno.h> #include <errno.h>
#include <string.h>
#include "postgres.h" #include "postgres.h"