Search
lxdream.org :: lxdream/src/x86dasm/sysdep.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/x86dasm/sysdep.h
changeset 755:ab873907b00e
prev362:dc40e2064dc4
author nkeynes
date Tue Feb 28 18:22:52 2012 +1000 (12 years ago)
permissions -rw-r--r--
last change Add a GL-only video driver for android usage (since the Java code is
responsible for creating the context)
view annotate diff log raw
     1 /* Random host-dependent support code.
     2    Copyright 1995, 1997, 2000 Free Software Foundation, Inc.
     3    Written by Ken Raeburn.
     5 This file is part of libopcodes, the opcodes library.
     7 This program is free software; you can redistribute it and/or modify
     8 it under the terms of the GNU General Public License as published by
     9 the Free Software Foundation; either version 2 of the License, or
    10 (at your option) any later version.
    12 This program is distributed in the hope that it will be useful,
    13 but WITHOUT ANY WARRANTY; without even the implied warranty of
    14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    15 GNU General Public License for more details.
    17 You should have received a copy of the GNU General Public License
    18 along with this program; if not, write to the Free Software
    19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
    21 /* Do system-dependent stuff, mainly driven by autoconf-detected info.
    23    Well, some generic common stuff is done here too, like including
    24    ansidecl.h.  That's because the .h files in bfd/hosts files I'm
    25    trying to replace often did that.  If it can be dropped from this
    26    file (check in a non-ANSI environment!), it should be.  */
    28 #include "lxdream.h"
    30 #include "x86dasm/ansidecl.h"
    32 #ifdef HAVE_STDLIB_H
    33 #include <stdlib.h>
    34 #endif
    36 #ifdef HAVE_STRING_H
    37 #include <string.h>
    38 #else
    39 #ifdef HAVE_STRINGS_H
    40 #include <strings.h>
    41 #endif
    42 #endif
.