summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Oliver Stöneberg <oliverst@online.de>2015-03-20 11:36:49 +0100
committer Oliver Stöneberg <oliverst@online.de>2015-03-20 11:36:49 +0100
commit2849b81c5dea11960c65f5c5fe2a1abf75dc5686 (patch)
treeb5baff054b0b892cc81af8167dd0d1d4b409a4a6 /src
parentd214223b1889a7af010692aeb77ab10b536f42d4 (diff)
removed unnecessary assert.h includes (nw)
including global one for Visual Studio
Diffstat (limited to 'src')
-rw-r--r--src/lib/formats/ap2_dsk.c1
-rw-r--r--src/lib/formats/ap_dsk35.c1
-rw-r--r--src/lib/formats/basicdsk.c1
-rw-r--r--src/lib/formats/cassimg.c1
-rw-r--r--src/lib/formats/coco_dsk.c1
-rw-r--r--src/lib/formats/flopimg.c1
-rw-r--r--src/lib/formats/ti99_dsk.c1
-rw-r--r--src/lib/formats/z80ne_dsk.c1
-rw-r--r--src/lib/util/flac.c1
-rw-r--r--src/lib/util/opresolv.c3
-rw-r--r--src/mess/tools/castool/main.c1
-rw-r--r--src/mess/tools/floptool/main.c1
-rw-r--r--src/mess/tools/imgtool/imgterrs.c2
-rw-r--r--src/osd/windows/winprefix.h1
14 files changed, 3 insertions, 14 deletions
diff --git a/src/lib/formats/ap2_dsk.c b/src/lib/formats/ap2_dsk.c
index c62033eb2ff..668a44c113a 100644
--- a/src/lib/formats/ap2_dsk.c
+++ b/src/lib/formats/ap2_dsk.c
@@ -8,7 +8,6 @@
#include <stdlib.h>
#include <string.h>
-#include <assert.h>
#include "ap2_dsk.h"
#include "basicdsk.h"
diff --git a/src/lib/formats/ap_dsk35.c b/src/lib/formats/ap_dsk35.c
index 8eee2ee0dab..86d8e19656d 100644
--- a/src/lib/formats/ap_dsk35.c
+++ b/src/lib/formats/ap_dsk35.c
@@ -97,7 +97,6 @@
*********************************************************************/
#include <stdio.h>
-#include <assert.h>
#include "emu.h"
#include "ap_dsk35.h"
diff --git a/src/lib/formats/basicdsk.c b/src/lib/formats/basicdsk.c
index 6b6b11ee4d1..d20a29cc7b0 100644
--- a/src/lib/formats/basicdsk.c
+++ b/src/lib/formats/basicdsk.c
@@ -8,7 +8,6 @@
#include <stdlib.h>
#include <string.h>
-#include <assert.h>
#include "basicdsk.h"
diff --git a/src/lib/formats/cassimg.c b/src/lib/formats/cassimg.c
index 20ccbc99407..bb527ce91f5 100644
--- a/src/lib/formats/cassimg.c
+++ b/src/lib/formats/cassimg.c
@@ -6,7 +6,6 @@
*********************************************************************/
-#include <assert.h>
#include <string.h>
#include "imageutl.h"
diff --git a/src/lib/formats/coco_dsk.c b/src/lib/formats/coco_dsk.c
index b3f2b306c43..d583813823a 100644
--- a/src/lib/formats/coco_dsk.c
+++ b/src/lib/formats/coco_dsk.c
@@ -7,7 +7,6 @@
*********************************************************************/
#include <string.h>
-#include <assert.h>
#include <time.h>
#include "formats/coco_dsk.h"
diff --git a/src/lib/formats/flopimg.c b/src/lib/formats/flopimg.c
index 2f3260366ce..dacd76d5b8b 100644
--- a/src/lib/formats/flopimg.c
+++ b/src/lib/formats/flopimg.c
@@ -10,7 +10,6 @@
#include <string.h>
#include <stdio.h>
#include <ctype.h>
-#include <assert.h>
#include <limits.h>
#include "emu.h"
diff --git a/src/lib/formats/ti99_dsk.c b/src/lib/formats/ti99_dsk.c
index a2abbd2902f..b1c473fef3e 100644
--- a/src/lib/formats/ti99_dsk.c
+++ b/src/lib/formats/ti99_dsk.c
@@ -43,7 +43,6 @@
#include "emu.h"
#include <string.h>
-#include <assert.h>
#include <time.h>
#include "imageutl.h"
diff --git a/src/lib/formats/z80ne_dsk.c b/src/lib/formats/z80ne_dsk.c
index 6394e177f4f..be521761f64 100644
--- a/src/lib/formats/z80ne_dsk.c
+++ b/src/lib/formats/z80ne_dsk.c
@@ -6,7 +6,6 @@
*********************************************************************/
-#include <assert.h>
#include "z80ne_dsk.h"
#include "basicdsk.h"
#include "imageutl.h"
diff --git a/src/lib/util/flac.c b/src/lib/util/flac.c
index 09e396c944e..bfaa519cf53 100644
--- a/src/lib/util/flac.c
+++ b/src/lib/util/flac.c
@@ -9,7 +9,6 @@
***************************************************************************/
#include "flac.h"
-#include <assert.h>
#include <new>
diff --git a/src/lib/util/opresolv.c b/src/lib/util/opresolv.c
index 4d093a955da..d275e47d03b 100644
--- a/src/lib/util/opresolv.c
+++ b/src/lib/util/opresolv.c
@@ -6,7 +6,6 @@
****************************************************************************/
-#include <assert.h>
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
@@ -15,6 +14,8 @@
#include "corestr.h"
#include "opresolv.h"
+#include <assert.h>
+
enum resolution_entry_state
{
RESOLUTION_ENTRY_STATE_UNSPECIFIED,
diff --git a/src/mess/tools/castool/main.c b/src/mess/tools/castool/main.c
index 22564dcdf78..e41542980b8 100644
--- a/src/mess/tools/castool/main.c
+++ b/src/mess/tools/castool/main.c
@@ -15,7 +15,6 @@
#include <ctype.h>
#include <stdlib.h>
#include <time.h>
-#include <assert.h>
#include "corestr.h"
diff --git a/src/mess/tools/floptool/main.c b/src/mess/tools/floptool/main.c
index 4575e1609cb..3d823d99a58 100644
--- a/src/mess/tools/floptool/main.c
+++ b/src/mess/tools/floptool/main.c
@@ -15,7 +15,6 @@
#include <ctype.h>
#include <stdlib.h>
#include <time.h>
-#include <assert.h>
#include <stdarg.h>
#include "corestr.h"
diff --git a/src/mess/tools/imgtool/imgterrs.c b/src/mess/tools/imgtool/imgterrs.c
index 58a2d944179..dac8b9d0572 100644
--- a/src/mess/tools/imgtool/imgterrs.c
+++ b/src/mess/tools/imgtool/imgterrs.c
@@ -6,9 +6,9 @@
***************************************************************************/
-#include <assert.h>
#include "imgterrs.h"
#include "osdcomm.h"
+#include <assert.h>
static const char *const msgs[] =
{
diff --git a/src/osd/windows/winprefix.h b/src/osd/windows/winprefix.h
index 53f03e46a1f..e506403e7b5 100644
--- a/src/osd/windows/winprefix.h
+++ b/src/osd/windows/winprefix.h
@@ -11,7 +11,6 @@
#endif
#ifdef _MSC_VER
-#include <assert.h>
#include <malloc.h>
#if _MSC_VER < 1900 // < VS2015
#define snprintf _snprintf