--- BasiliskII/src/AmigaOS/ether_amiga.cpp 2002/01/15 14:58:34 1.11 +++ BasiliskII/src/AmigaOS/ether_amiga.cpp 2002/06/23 08:27:05 1.12 @@ -1,7 +1,7 @@ /* * ether_amiga.cpp - Ethernet device driver, AmigaOS specific stuff * - * Basilisk II (C) 1997-2002 Christian Bauer + * Basilisk II (C) 1997-2001 Christian Bauer * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -25,8 +25,12 @@ #include #include #include +#define __USE_SYSBASE #include #include +#include +#include +#include #include "sysdeps.h" #include "cpu_emulation.h" @@ -420,7 +424,7 @@ static __saveds void net_func(void) // Open device control_io->ios2_BufferManagement = buffer_tags; - od_error = OpenDevice((UBYTE *)dev_name, dev_unit, (struct IORequest *)control_io, 0); + od_error = OpenDevice((UBYTE *) dev_name, dev_unit, (struct IORequest *)control_io, 0); if (od_error != 0 || control_io->ios2_Req.io_Device == 0) { printf("WARNING: OpenDevice(<%s>, unit=%d) returned error %d)\n", (UBYTE *)dev_name, dev_unit, od_error); goto quit;