Deleted Added
full compact
machdep.h (123120) machdep.h (126891)
1/*
2 * Cronyx DDK: platform dependent definitions.
3 *
4 * Copyright (C) 1998-1999 Cronyx Engineering
5 * Author: Alexander Kvitchenko, <aak@cronyx.ru>
6 *
7 * Copyright (C) 2001-2003 Cronyx Engineering.
8 * Author: Roman Kurakin, <rik@cronyx.ru>
9 *
10 * This software is distributed with NO WARRANTIES, not even the implied
11 * warranties for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 *
13 * Authors grant any other persons or organisations permission to use
14 * or modify this software as long as this message is kept with the software,
15 * all derivative works or modified versions.
16 *
17 * Cronyx Id: machdep.h,v 1.3.4.3 2003/11/27 14:21:58 rik Exp $
1/*
2 * Cronyx DDK: platform dependent definitions.
3 *
4 * Copyright (C) 1998-1999 Cronyx Engineering
5 * Author: Alexander Kvitchenko, <aak@cronyx.ru>
6 *
7 * Copyright (C) 2001-2003 Cronyx Engineering.
8 * Author: Roman Kurakin, <rik@cronyx.ru>
9 *
10 * This software is distributed with NO WARRANTIES, not even the implied
11 * warranties for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 *
13 * Authors grant any other persons or organisations permission to use
14 * or modify this software as long as this message is kept with the software,
15 * all derivative works or modified versions.
16 *
17 * Cronyx Id: machdep.h,v 1.3.4.3 2003/11/27 14:21:58 rik Exp $
18 * $FreeBSD: head/sys/dev/cx/machdep.h 123120 2003-12-03 07:29:38Z imp $
18 * $FreeBSD: head/sys/dev/cx/machdep.h 126891 2004-03-12 21:45:33Z trhodes $
19 */
20
21/*
22 * DOS (Borland Turbo C++ 1.0)
23 */
24#if defined (MSDOS) || defined (__MSDOS__)
25# include <dos.h>
26# include <string.h>

--- 52 unchanged lines hidden (view full) ---

79# endif
80#endif
81
82#endif
83#endif
84#endif
85
86#ifndef inline
19 */
20
21/*
22 * DOS (Borland Turbo C++ 1.0)
23 */
24#if defined (MSDOS) || defined (__MSDOS__)
25# include <dos.h>
26# include <string.h>

--- 52 unchanged lines hidden (view full) ---

79# endif
80#endif
81
82#endif
83#endif
84#endif
85
86#ifndef inline
87# if __GNUC__ >= 2
87# if __GNUC__ >= 2 || defined(__INTEL_COMPILER)
88# define inline __inline__
89# else
90# define inline /**/
91# endif
92#endif
93
94#ifndef ulong64
95#define ulong64 unsigned long long
96#endif
88# define inline __inline__
89# else
90# define inline /**/
91# endif
92#endif
93
94#ifndef ulong64
95#define ulong64 unsigned long long
96#endif