Previous 199869 Revisions Next

r36492 Friday 20th March, 2015 at 10:36:49 UTC by Oliver Stöneberg
removed unnecessary assert.h includes (nw)

including global one for Visual Studio
[src/lib/formats]ap2_dsk.c ap_dsk35.c basicdsk.c cassimg.c coco_dsk.c flopimg.c ti99_dsk.c z80ne_dsk.c
[src/lib/util]flac.c opresolv.c
[src/mess/tools/castool]main.c
[src/mess/tools/floptool]main.c
[src/mess/tools/imgtool]imgterrs.c
[src/osd/windows]winprefix.h

trunk/src/lib/formats/ap2_dsk.c
r245003r245004
88
99#include <stdlib.h>
1010#include <string.h>
11#include <assert.h>
1211
1312#include "ap2_dsk.h"
1413#include "basicdsk.h"
trunk/src/lib/formats/ap_dsk35.c
r245003r245004
9797*********************************************************************/
9898
9999#include <stdio.h>
100#include <assert.h>
101100
102101#include "emu.h"
103102#include "ap_dsk35.h"
trunk/src/lib/formats/basicdsk.c
r245003r245004
88
99#include <stdlib.h>
1010#include <string.h>
11#include <assert.h>
1211
1312#include "basicdsk.h"
1413
trunk/src/lib/formats/cassimg.c
r245003r245004
66
77*********************************************************************/
88
9#include <assert.h>
109#include <string.h>
1110
1211#include "imageutl.h"
trunk/src/lib/formats/coco_dsk.c
r245003r245004
77*********************************************************************/
88
99#include <string.h>
10#include <assert.h>
1110#include <time.h>
1211
1312#include "formats/coco_dsk.h"
trunk/src/lib/formats/flopimg.c
r245003r245004
1010#include <string.h>
1111#include <stdio.h>
1212#include <ctype.h>
13#include <assert.h>
1413#include <limits.h>
1514
1615#include "emu.h"
trunk/src/lib/formats/ti99_dsk.c
r245003r245004
4343
4444#include "emu.h"
4545#include <string.h>
46#include <assert.h>
4746#include <time.h>
4847
4948#include "imageutl.h"
trunk/src/lib/formats/z80ne_dsk.c
r245003r245004
66
77*********************************************************************/
88
9#include <assert.h>
109#include "z80ne_dsk.h"
1110#include "basicdsk.h"
1211#include "imageutl.h"
trunk/src/lib/util/flac.c
r245003r245004
99***************************************************************************/
1010
1111#include "flac.h"
12#include <assert.h>
1312#include <new>
1413
1514
trunk/src/lib/util/opresolv.c
r245003r245004
66
77****************************************************************************/
88
9#include <assert.h>
109#include <ctype.h>
1110#include <stdlib.h>
1211#include <string.h>
r245003r245004
1514#include "corestr.h"
1615#include "opresolv.h"
1716
17#include <assert.h>
18
1819enum resolution_entry_state
1920{
2021   RESOLUTION_ENTRY_STATE_UNSPECIFIED,
trunk/src/mess/tools/castool/main.c
r245003r245004
1515#include <ctype.h>
1616#include <stdlib.h>
1717#include <time.h>
18#include <assert.h>
1918
2019#include "corestr.h"
2120
trunk/src/mess/tools/floptool/main.c
r245003r245004
1515#include <ctype.h>
1616#include <stdlib.h>
1717#include <time.h>
18#include <assert.h>
1918#include <stdarg.h>
2019
2120#include "corestr.h"
trunk/src/mess/tools/imgtool/imgterrs.c
r245003r245004
66
77***************************************************************************/
88
9#include <assert.h>
109#include "imgterrs.h"
1110#include "osdcomm.h"
11#include <assert.h>
1212
1313static const char *const msgs[] =
1414{
trunk/src/osd/windows/winprefix.h
r245003r245004
1111#endif
1212
1313#ifdef _MSC_VER
14#include <assert.h>
1514#include <malloc.h>
1615#if _MSC_VER < 1900 // < VS2015
1716#define snprintf _snprintf


Previous 199869 Revisions Next


© 1997-2024 The MAME Team