1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-26 11:52:25 +00:00

More linux related fixups for string.h.

Fix some type warnings.

	modified:   ../src/dsk.c
	modified:   ../src/fvar.c
	modified:   ../src/ldsout.c
	modified:   ../src/main.c
	modified:   ../src/timer.c
This commit is contained in:
Nick Briggs
2018-03-27 10:39:23 -07:00
parent 8e99402729
commit 69796e34d7
5 changed files with 15 additions and 4 deletions

View File

@@ -38,6 +38,9 @@ static char *id = "$Id: main.c,v 1.4 2001/12/26 22:17:03 sybalsky Exp $ Copyrigh
#include <string.h>
#include <i32.h>
#endif /* DOS */
#ifdef LINUX
#include <time.h>
#endif
#ifndef NOETHER
#ifndef USE_DLPI
@@ -796,7 +799,7 @@ void print_info_lines() {
#elif (RELEASE == 351)
printf("Emulator for Medley release 3.51\n");
#endif /* RELEASE */
#if defined(MACOSX) || defined(FREEBSD)
#if defined(MACOSX) || defined(FREEBSD) || defined(LINUX)
printf("Creation date: %s", ctime((const time_t *)&MDate));
#else
printf("Creation date: %s", ctime(&MDate));