/* %Z%%M% %I% %E% */

/*
 * Copyright (c) 1990, 1991, 1995 by Wayne C. Gramlich.
 * All rights reserved.
 *
 * Permission to use, copy, modify, distribute, and sell this software
 * for any purpose is hereby granted without fee provided that the above
 * copyright notice and this permission are retained.  The author makes
 * no representations about the suitability of this software for any purpose.
 * It is provided "as is" without express or implied warranty.
 */

/* Wrapper for time.h: */

#ifndef UNIX_TIME_H
#define UNIX_TIME_H

#ifndef STR_TYPES_H
#include "str_types.h"
#endif

#include <time.h>

typedef struct tm *Tm, Tm_rec;

/*************************************************
ifdef SOLARIS
extern Str strptime(Str, Str, Tm);
else
gcc will not treat "const char *" the same as "char *".  Bummer!
extern Str strptime(Str, const char *, Tm);
endif
*************************************************/

#endif /* UNIX_TIME_H */
