Revision: 75721
http://sourceforge.net/p/brlcad/code/75721
Author: starseeker
Date: 2020-05-07 13:40:40 +0000 (Thu, 07 May 2020)
Log Message:
-----------
Try using just stdio.h rather than bio.h for FILE
Modified Paths:
--------------
brlcad/branches/bioh/include/bu/cmd.h
brlcad/branches/bioh/include/bu/vls.h
brlcad/branches/bioh/include/ged/defines.h
brlcad/branches/bioh/include/nmg.h
brlcad/branches/bioh/include/rt/anim.h
brlcad/branches/bioh/include/rt/calc.h
brlcad/branches/bioh/include/rt/cmd.h
brlcad/branches/bioh/include/rt/db_instance.h
brlcad/branches/bioh/include/rt/db_internal.h
brlcad/branches/bioh/include/rt/db_io.h
brlcad/branches/bioh/include/rt/vlist.h
Modified: brlcad/branches/bioh/include/bu/cmd.h
===================================================================
--- brlcad/branches/bioh/include/bu/cmd.h 2020-05-07 13:33:14 UTC (rev
75720)
+++ brlcad/branches/bioh/include/bu/cmd.h 2020-05-07 13:40:40 UTC (rev
75721)
@@ -36,7 +36,6 @@
#include <time.h>
#include "bsocket.h" /* for timeval */
-#include "bio.h"
#define BU_CMD_NULL (int (*)(void *, int, const char **))NULL
Modified: brlcad/branches/bioh/include/bu/vls.h
===================================================================
--- brlcad/branches/bioh/include/bu/vls.h 2020-05-07 13:33:14 UTC (rev
75720)
+++ brlcad/branches/bioh/include/bu/vls.h 2020-05-07 13:40:40 UTC (rev
75721)
@@ -22,10 +22,10 @@
#define BU_VLS_H
#include "common.h"
+#include <stdio.h> /* for FILE */
#include <stddef.h> /* for size_t */
#include <stdarg.h> /* For va_list */
-#include "bio.h" /* for FILE */
#include "bu/defines.h"
#include "bu/magic.h"
Modified: brlcad/branches/bioh/include/ged/defines.h
===================================================================
--- brlcad/branches/bioh/include/ged/defines.h 2020-05-07 13:33:14 UTC (rev
75720)
+++ brlcad/branches/bioh/include/ged/defines.h 2020-05-07 13:40:40 UTC (rev
75721)
@@ -29,7 +29,6 @@
#define GED_DEFINES_H
#include "common.h"
-#include "bio.h"
#include "bu/hash.h"
#include "bu/list.h"
#include "bu/process.h"
Modified: brlcad/branches/bioh/include/nmg.h
===================================================================
--- brlcad/branches/bioh/include/nmg.h 2020-05-07 13:33:14 UTC (rev 75720)
+++ brlcad/branches/bioh/include/nmg.h 2020-05-07 13:40:40 UTC (rev 75721)
@@ -67,6 +67,9 @@
#include "common.h"
+/* system headers */
+#include <stdio.h> /* for FILE */
+
/* interface headers */
#include "vmath.h"
#include "bu/list.h"
@@ -78,10 +81,7 @@
#include "bn/vlist.h"
#include "vmath.h"
-/* system headers */
-#include "bio.h" /* for FILE */
-
#ifndef NMG_EXPORT
# if defined(NMG_DLL_EXPORTS) && defined(NMG_DLL_IMPORTS)
# error "Only NMG_DLL_EXPORTS or NMG_DLL_IMPORTS can be defined, not both."
Modified: brlcad/branches/bioh/include/rt/anim.h
===================================================================
--- brlcad/branches/bioh/include/rt/anim.h 2020-05-07 13:33:14 UTC (rev
75720)
+++ brlcad/branches/bioh/include/rt/anim.h 2020-05-07 13:40:40 UTC (rev
75721)
@@ -26,6 +26,9 @@
#include "common.h"
+/* system headers */
+#include <stdio.h> /* for FILE */
+
/* interface headers */
#include "vmath.h"
#include "bu/vls.h"
@@ -34,9 +37,6 @@
#include "rt/mater.h"
#include "rt/db_fullpath.h"
-/* system headers */
-#include "bio.h" /* for FILE */
-
__BEGIN_DECLS
struct db_i; /* forward declaration */
Modified: brlcad/branches/bioh/include/rt/calc.h
===================================================================
--- brlcad/branches/bioh/include/rt/calc.h 2020-05-07 13:33:14 UTC (rev
75720)
+++ brlcad/branches/bioh/include/rt/calc.h 2020-05-07 13:40:40 UTC (rev
75721)
@@ -28,14 +28,14 @@
#include "common.h"
+/* system headers */
+#include <stdio.h> /* for FILE */
+
/* interface headers */
#include "vmath.h"
#include "bu/vls.h"
#include "bn/poly.h"
-/* system headers */
-#include "bio.h" /* for FILE */
-
__BEGIN_DECLS
/* apply a matrix transformation */
Modified: brlcad/branches/bioh/include/rt/cmd.h
===================================================================
--- brlcad/branches/bioh/include/rt/cmd.h 2020-05-07 13:33:14 UTC (rev
75720)
+++ brlcad/branches/bioh/include/rt/cmd.h 2020-05-07 13:40:40 UTC (rev
75721)
@@ -26,14 +26,14 @@
#include "common.h"
+/* system headers */
+#include <stdio.h> /* for FILE */
+
/* interface headers */
#include "vmath.h"
#include "rt/defines.h"
#include "rt/rt_instance.h"
-/* system headers */
-#include "bio.h" /* for FILE */
-
__BEGIN_DECLS
/**
Modified: brlcad/branches/bioh/include/rt/db_instance.h
===================================================================
--- brlcad/branches/bioh/include/rt/db_instance.h 2020-05-07 13:33:14 UTC
(rev 75720)
+++ brlcad/branches/bioh/include/rt/db_instance.h 2020-05-07 13:40:40 UTC
(rev 75721)
@@ -26,6 +26,9 @@
#include "common.h"
+/* system headers */
+#include <stdio.h> /* for FILE */
+
/* interface headers */
#include "bu/magic.h"
#include "bu/file.h"
@@ -35,9 +38,6 @@
#include "rt/directory.h"
#include "rt/anim.h"
-/* system headers */
-#include "bio.h" /* for FILE */
-
__BEGIN_DECLS
struct rt_wdb; /* forward declaration */
Modified: brlcad/branches/bioh/include/rt/db_internal.h
===================================================================
--- brlcad/branches/bioh/include/rt/db_internal.h 2020-05-07 13:33:14 UTC
(rev 75720)
+++ brlcad/branches/bioh/include/rt/db_internal.h 2020-05-07 13:40:40 UTC
(rev 75721)
@@ -26,6 +26,9 @@
#include "common.h"
+/* system headers */
+#include <stdio.h> /* for FILE */
+
/* interface headers */
#include "bu/magic.h"
#include "bu/avs.h"
@@ -33,9 +36,6 @@
#include "rt/defines.h"
#include "rt/resource.h"
-/* system headers */
-#include "bio.h" /* for FILE */
-
__BEGIN_DECLS
struct rt_functab; /* forward declaration */
Modified: brlcad/branches/bioh/include/rt/db_io.h
===================================================================
--- brlcad/branches/bioh/include/rt/db_io.h 2020-05-07 13:33:14 UTC (rev
75720)
+++ brlcad/branches/bioh/include/rt/db_io.h 2020-05-07 13:40:40 UTC (rev
75721)
@@ -26,6 +26,9 @@
#include "common.h"
+/* system headers */
+#include <stdio.h> /* for FILE */
+
/* interface headers */
#include "vmath.h"
#include "bu/avs.h"
@@ -32,9 +35,6 @@
#include "rt/db5.h"
#include "rt/defines.h"
-/* system headers */
-#include "bio.h" /* for FILE, b_off_t */
-
__BEGIN_DECLS
Modified: brlcad/branches/bioh/include/rt/vlist.h
===================================================================
--- brlcad/branches/bioh/include/rt/vlist.h 2020-05-07 13:33:14 UTC (rev
75720)
+++ brlcad/branches/bioh/include/rt/vlist.h 2020-05-07 13:40:40 UTC (rev
75721)
@@ -26,14 +26,13 @@
#include "common.h"
+/* system headers */
+#include <stdio.h> /* for FILE */
+
/* interface headers */
#include "vmath.h"
#include "bu/vls.h"
-/* system headers */
-#include "bio.h" /* for FILE */
-
-
__BEGIN_DECLS
/**
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits