diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-13 01:28:29 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-13 01:28:29 +0000 |
commit | 9b7eb28ea5ebdea8ea92944f036b7c0409abd62f (patch) | |
tree | eceb8d8746dca018611d7e92e12f5b67409bce39 /src/backend/bootstrap/bootstrap.h | |
parent | 5bd4485c8e4fd1a198af7bd7f254d5ea2330a886 (diff) |
Fixes:
There is a support routine in the standard 4.4BSD C library
called "err()". There is also a utility routine in
.../src/backend/bootstrap/bootstrap.c
with the same name.
Here's a patch that renames the pg95 routine to something a little
more sane. As a bonus, one more bit of system-specific code leaves
the system...
Submitted by: "Kurt J. Lidl" <lidl@va.pubnix.com>
Diffstat (limited to 'src/backend/bootstrap/bootstrap.h')
-rw-r--r-- | src/backend/bootstrap/bootstrap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/bootstrap/bootstrap.h b/src/backend/bootstrap/bootstrap.h index 8ade7664f1f..3659707d1d2 100644 --- a/src/backend/bootstrap/bootstrap.h +++ b/src/backend/bootstrap/bootstrap.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: bootstrap.h,v 1.1.1.1 1996/07/09 06:21:14 scrappy Exp $ + * $Id: bootstrap.h,v 1.2 1996/08/13 01:28:29 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -54,7 +54,7 @@ extern void index_register(char *heap, FuncIndexInfo *finfo, PredInfo *predInfo); -extern void err(void); +extern void err_out(void); extern void InsertOneTuple(Oid objectid); extern void closerel(char *name); extern void boot_openrel(char *name); |