view lib/posixtm.h @ 4086:f1d4a2e6825a

Remove unused declaration.
author Bruno Haible <bruno@clisp.org>
date Tue, 17 Dec 2002 11:48:11 +0000
parents f58fdf937295
children 686e1813a84b
line wrap: on
line source

#ifndef POSIXTM_H_
# define POSIXTM_H_

/* POSIX Date Syntax flags.  */
# define PDS_LEADING_YEAR 1
# define PDS_TRAILING_YEAR 2
# define PDS_CENTURY 4
# define PDS_SECONDS 8

# ifndef PARAMS
#  if defined PROTOTYPES || (defined __STDC__ && __STDC__)
#   define PARAMS(Args) Args
#  else
#   define PARAMS(Args) ()
#  endif
# endif

time_t
posixtime PARAMS ((const char *s, unsigned int syntax_bits));

struct tm *
posixtm PARAMS ((const char *s, unsigned int syntax_bits));

#endif