* For mailing lists, Alpine adds a description of the type of link
[alpine.git] / pith / adjtime.h
blob07c6fd2d29da91e3b5e76a9187fde394c42394c6
1 /*
2 * $Id: adjtime.h 761 2007-10-23 22:35:18Z hubert@u.washington.edu $
4 * ========================================================================
5 * Copyright 2013-2022 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 prototypes */
32 time_t get_adj_time(void);
33 time_t get_adj_name_file_mtime(char *);
36 #endif /* PITH_TIME_INCLUDED */