diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/systime.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/systime.h b/src/systime.h index 3f40b12c021..faf5d139956 100644 --- a/src/systime.h +++ b/src/systime.h | |||
| @@ -17,12 +17,14 @@ You should have received a copy of the GNU General Public License | |||
| 17 | along with GNU Emacs; see the file COPYING. If not, write to | 17 | along with GNU Emacs; see the file COPYING. If not, write to |
| 18 | the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | 18 | the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ |
| 19 | 19 | ||
| 20 | #ifdef TM_IN_SYS_TIME | 20 | #ifdef TIME_WITH_SYS_TIME |
| 21 | #include <sys/time.h> | 21 | #include <sys/time.h> |
| 22 | #else | ||
| 23 | #include <time.h> | 22 | #include <time.h> |
| 23 | #else | ||
| 24 | #ifdef HAVE_SYS_TIME_H | 24 | #ifdef HAVE_SYS_TIME_H |
| 25 | #include <sys/time.h> | 25 | #include <sys/time.h> |
| 26 | #else | ||
| 27 | #include <time.h> | ||
| 26 | #endif | 28 | #endif |
| 27 | #endif | 29 | #endif |
| 28 | 30 | ||