1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-03 20:02:46 +03:00

Warning removal cleanup

This commit is contained in:
Bruce Momjian
1996-11-11 04:54:54 +00:00
parent 8d9be647dc
commit 13d44b4aac
4 changed files with 11 additions and 6 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.3 1996/11/08 20:45:45 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.4 1996/11/11 04:54:45 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -250,6 +250,7 @@ myinput(char* buf, int max)
}
}
#ifdef NOT_USED
char*
CurScan(void)
{
@ -258,5 +259,7 @@ CurScan(void)
(yy_c_buf_p - &yy_current_buffer->yy_ch_buf[yy_n_chars]);
*/
}
#endif
#endif /* FLEX_SCANNER */

View File

@ -19,12 +19,13 @@
#include <time.h>
#include <config.h>
#include <parser/sysfunc.h>
/*
* Can't get much more obvious than this. Might need to replace localtime()
* on older systems...
*/
char *Sysfunc_system_date(void)
static char *Sysfunc_system_date(void)
{
time_t cur_time_secs;
struct tm *cur_time_expanded;