762dd8c619
9.0 includes more major features than any release before it, including: * Hot standby * Streaming replication * In-place upgrades * 64-bit Windows builds * Easy mass permissions management * Anonymous blocks and named parameter calls for stored procedures * New windowing functions and ordered aggregates ... and many more. For details on the over 200 additions and improvements in this version, developed by over a hundred contributors, please see the release notes.
15 lines
667 B
Text
15 lines
667 B
Text
$NetBSD: patch-ag,v 1.1.1.1 2010/09/21 07:50:46 adam Exp $
|
|
|
|
--- src/timezone/private.h.orig 2009-06-11 16:49:15.000000000 +0200
|
|
+++ src/timezone/private.h
|
|
@@ -51,8 +51,8 @@ extern int unlink(const char *filename);
|
|
extern char *icalloc(int nelem, int elsize);
|
|
extern char *icatalloc(char *old, const char *new);
|
|
extern char *icpyalloc(const char *string);
|
|
-extern char *imalloc(int n);
|
|
-extern void *irealloc(void *pointer, int size);
|
|
+extern char *imalloc(const int n);
|
|
+extern void *irealloc(void *pointer, const int size);
|
|
extern void icfree(char *pointer);
|
|
extern void ifree(char *pointer);
|
|
extern const char *scheck(const char *string, const char *format);
|