1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-16 15:02:33 +03:00

Typecasts, etc. to make compile work on AIX. Thanks Darren King..

This commit is contained in:
Bryan Henderson
1996-11-24 04:44:24 +00:00
parent d3f9d6ad4f
commit 092c7a6be5
4 changed files with 15 additions and 15 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/mmgr/Attic/palloc.c,v 1.1.1.1 1996/07/09 06:22:09 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/mmgr/Attic/palloc.c,v 1.2 1996/11/24 04:44:17 bryanh Exp $
*
*-------------------------------------------------------------------------
*/
@@ -109,9 +109,8 @@ pstrdup(char* string)
{
char *nstr;
nstr = strcpy((char *)palloc(strlen(string)+1), string);
nstr = (char *)palloc(strlen(string)+1);
strcpy(nstr, string);
return nstr;
}