nindy bug fixes (function types) and opcode library inclusion
[deliverable/binutils-gdb.git] / gdb / go32-xdep.c
CommitLineData
ae0ea72e
SC
1/* Host-dependent code for dos running GO32 for GDB, the GNU debugger.
2 Copyright 1992
3 Free Software Foundation, Inc.
4
5This file is part of GDB.
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
19Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
20
21#include <stdio.h>
22
23static void uerror(char *s)
24{
25 fprintf(stderr, "Fatal: %s!\n");
26 exit(1);
27}
28
29fork(){uerror("attempt to call fork()");}
30vfork(){uerror("attempt to call vfork()");}
31wait(){uerror("attempt to call wait()");}
32execlp(){uerror("attempt to call execlp()");}
33kill_inferior_fast(){uerror("attempt to call kill_inferior_fast()");}
34kill_inferior(){uerror("attempt to call kill_inferior()");}
35re_comp(){uerror("attempt to call re_comp()");}
36re_exec(){uerror("attempt to call re_exec()");}
37call_ptrace(){uerror("attempt to call call_ptrace()");}
38child_resume(){uerror("attempt to call child_resume()");}
39fetch_inferior_registers(){uerror("attempt to call fetch_inferior_registers()");}
40store_inferior_registers(){uerror("attempt to call store_inferior_registers()");}
41child_xfer_memory(){uerror("attempt to call child_xfer_memory()");}
42fetch_core_registers(){uerror("attempt to call fetch_core_registers()");}
43
This page took 0.032779 seconds and 4 git commands to generate.