blob: d24337177eb497e323899327c7b993c4779c8faa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/* Copyright (C) 2001-2006 artofcode LLC.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied, modified
or distributed except as expressly authorized under the terms of that
license. Refer to licensing information at http://www.artifex.com/
or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
*/
/* $Id$ */
#ifndef __sys_types_h__
#define __sys_types_h__
#include <MacTypes.h>
#include <unix.h>
#define CHECK_INTERRUPTS
/* use a 64 bit type for color vectors. (from MacTypes.h)
this is important for devicen support, but can be safely
undef'd to fallback to a 32 bit representation */
#define GX_COLOR_INDEX_TYPE UInt64
#define main gs_main
#if (0)
#define fprintf myfprintf
#define fputs myfputs
#define getenv mygetenv
int myfprintf(FILE *file, const char *fmt, ...);
int myfputs(const char *string, FILE *file);
#endif
/* Metrowerks CodeWarrior should define this */
#ifndef __MACOS__
#define __MACOS__
#endif
#endif /* __sys_types_h__ */
|