diff options
author | Edmund Mergl <E.Mergl@bawue.de> | 1997-05-17 16:25:57 +0000 |
---|---|---|
committer | Edmund Mergl <E.Mergl@bawue.de> | 1997-05-17 16:25:57 +0000 |
commit | 33a629cfefa19edd373dfa33f8f20590375e87b1 (patch) | |
tree | 1463ede6edf39ce89e3ec6f295b5c205166bcf46 | |
parent | 0c67d28a0833d5c57c8535e93dfa6e8e9a015f8f (diff) | |
download | postgresql-33a629cfefa19edd373dfa33f8f20590375e87b1.tar.gz postgresql-33a629cfefa19edd373dfa33f8f20590375e87b1.zip |
added const declaration in form() E.Mergl
-rw-r--r-- | src/include/c.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/c.h b/src/include/c.h index 6b163f95626..e02f5f9fd56 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: c.h,v 1.12 1997/04/24 20:00:45 scrappy Exp $ + * $Id: c.h,v 1.13 1997/05/17 16:25:57 mergl Exp $ * *------------------------------------------------------------------------- */ @@ -700,7 +700,7 @@ extern int ExceptionalCondition(char *conditionName, * form is used by assert and the exception handling stuff * ---------------- */ -extern char *form(char *fmt, ...); +extern char *form(const char *fmt, ...); |