* read.c (pseudo_set, case O_symbol): If OBJ_COPY_SYMBOL_ATTRIBUTES is defined,
[deliverable/binutils-gdb.git] / gas / config / ho-mpw.h
1 /* ho-mpw.h Host-specific header file for MPW.
2 Copyright (C) 1993 Free Software Foundation, Inc.
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20 #ifndef MPW
21 #define MPW
22 #endif
23
24 #define bzero(a,b) memset(a,0,b)
25 #define bcopy(a,b,c) memcpy(b,a,c)
26 #define bcmp(a,b,c) memcmp(a,b,c)
27
28 #if 0 /* this doesn't work, sigh */
29 #ifndef __STDC__
30 #define __STDC__
31 #endif
32 #endif
33
34 #define M_ANSI 1
35
36 #include <stdlib.h>
37 #include <string.h>
38 #include <memory.h>
39
40 char *strdup();
41
42 #ifdef MPW_C
43
44 #undef __PTR_TO_INT
45 #define __PTR_TO_INT(P) ((int)(P))
46 #undef __INT_TO_PTR
47 #define __INT_TO_PTR(P) ((char *)(P))
48
49 #endif
50
51 #define sys_nerr _sys_nerr
52 #define sys_errlist _sys_errlist
53
54 #ifdef __STDIO__
55 FILE *mpw_fopen();
56 #endif
57
58 #define fopen mpw_fopen
59 #define fseek mpw_fseek
60 #define abort mpw_abort
61
62 /* <cr> is an end-of-line marker. */
63
64 #define CR_EOL
65
66 #define ABORT_ON_ERROR
67
68 #define LOSING_COMPILER
69
70 /* Arrange for the debugger hook to be checked right when the assembler
71 starts up. */
72
73 #define HOST_SPECIAL_INIT(argc,argv) mpw_special_init ((argv)[0]);
74
75 /* end of ho-mpw.h */
This page took 0.197864 seconds and 4 git commands to generate.