* Create help for explaining how encrypted password file support
[alpine.git] / pith / adjtime.h
blob355b10207b9814057185d01477433626f3f1b77c
1 /*
2 * $Id: adjtime.h 761 2007-10-23 22:35:18Z hubert@u.washington.edu $
4 * ========================================================================
5 * Copyright 2006 University of Washington
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * ========================================================================
16 #ifndef PITH_TIME_INCLUDED
17 #define PITH_TIME_INCLUDED
21 * This is just like a struct timeval. We need it for portability to systems
22 * that don't have a struct timeval.
24 typedef struct our_time_val {
25 long sec;
26 long usec;
27 } TIMEVAL_S;
30 /* exported protoypes */
31 time_t get_adj_time(void);
32 time_t get_adj_name_file_mtime(char *);
35 #endif /* PITH_TIME_INCLUDED */