version 1.7, 2025/03/24 04:13:11
|
version 1.25, 2025/05/02 16:30:16
|
Line 24
|
Line 24
|
* along with FreeM. If not, see <https://www.gnu.org/licenses/>. |
* along with FreeM. If not, see <https://www.gnu.org/licenses/>. |
* |
* |
* $Log$ |
* $Log$ |
|
* Revision 1.25 2025/05/02 16:30:16 snw |
|
* Fix broken build due to time issues |
|
* |
|
* Revision 1.24 2025/04/28 14:52:54 snw |
|
* Temporarily revert global handler refactor and fix reference regression in xecline |
|
* |
* Revision 1.7 2025/03/24 04:13:11 snw |
* Revision 1.7 2025/03/24 04:13:11 snw |
* Replace action macro dat with fra_dat to avoid symbol conflict on OS/2 |
* Replace action macro dat with fra_dat to avoid symbol conflict on OS/2 |
* |
* |
Line 46
|
Line 52
|
#include <fcntl.h> |
#include <fcntl.h> |
#include <unistd.h> |
#include <unistd.h> |
#include <string.h> |
#include <string.h> |
|
#if defined(USE_SYS_TIME_H) && !defined(MSDOS) && !defined(__osf__) |
|
# include <sys/time.h> |
|
#else |
|
# include <time.h> |
|
#endif |
|
|
#include <errno.h> |
#include <errno.h> |
|
|
Line 104 static void panic (void);
|
Line 115 static void panic (void);
|
#define BOTTOM 6 |
#define BOTTOM 6 |
#define DATA 8 |
#define DATA 8 |
|
|
#if !defined(__OpenBSD__) && !defined(_AIX) && !defined(__osf__) && !defined(MSDOS) && !defined(__vax__) && !defined(__OS2__) |
#if !defined(__OpenBSD__) && !defined(_AIX) && !defined(__osf__) && !defined(MSDOS) && !defined(__vax__) && !defined(__OS2__) && !defined(__linux__) |
long time (); |
long time (); |
#endif |
#endif |
|
|