Mercurial > noffle
view src/server.h @ 272:f3b44be9e4ab noffle
[svn] * configure.in: Remove '-ansi' and '-Wtraditional'. We use functions
that aren't strict ANSI, and I'm not interested in warnings about
usage differences between ANSI and K&R.
* Makefile.in,aclocal.m4,config.h.in,configure,src/Makefile.in:
Regenerate after configure.in change. With all the above in, we now
compile cleanly on Cygwin with GCC 3.2, except for a warning about
printing a time_t with a %ld format. This will serve as a reminder that
we assume time_t is the same size as a long.
author | bears |
---|---|
date | Sun, 10 Nov 2002 11:44:18 +0000 |
parents | 7ba337dafb2c |
children |
line wrap: on
line source
/* server.h Be NNTP server on stdin/stdout. $Id: server.h 260 2001-02-25 23:29:50Z bears $ */ #ifndef SERV_H #define SERV_H #if HAVE_CONFIG_H #include <config.h> #endif void Server_run( void ); void Server_flushCache( void ); #endif