* Improvements to the pico manual as well as on the code that displays
[alpine.git] / pith / adjtime.h
blob41514be8c2a0e1ae3ad92640185cf95085f824ff
1 /*
2 * $Id: adjtime.h 761 2007-10-23 22:35:18Z hubert@u.washington.edu $
4 * ========================================================================
5 * Copyright 2013-2019 Eduardo Chappa
6 * Copyright 2006 University of Washington
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * ========================================================================
17 #ifndef PITH_TIME_INCLUDED
18 #define PITH_TIME_INCLUDED
22 * This is just like a struct timeval. We need it for portability to systems
23 * that don't have a struct timeval.
25 typedef struct our_time_val {
26 long sec;
27 long usec;
28 } TIMEVAL_S;
31 /* exported protoypes */
32 time_t get_adj_time(void);
33 time_t get_adj_name_file_mtime(char *);
36 #endif /* PITH_TIME_INCLUDED */