summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/util/profile/ChangeLog4
-rw-r--r--src/util/profile/profile.hin2
2 files changed, 6 insertions, 0 deletions
diff --git a/src/util/profile/ChangeLog b/src/util/profile/ChangeLog
index 1eaac6064e..180216f94c 100644
--- a/src/util/profile/ChangeLog
+++ b/src/util/profile/ChangeLog
@@ -1,3 +1,7 @@
+Wed Apr 26 09:54:18 1995 Ezra Peisach <epeisach@kangaroo.mit.edu>
+
+ * profile.hin: Only define PROTOTYPE if it is undefined.
+
Tue Apr 25 17:28:48 1995 Ezra Peisach <epeisach@kangaroo.mit.edu>
* configure.in: Add AC_CONST for platforms that do not support const.
diff --git a/src/util/profile/profile.hin b/src/util/profile/profile.hin
index 3d34d082c4..2fec69337d 100644
--- a/src/util/profile/profile.hin
+++ b/src/util/profile/profile.hin
@@ -4,11 +4,13 @@
typedef struct _profile_t *profile_t;
+#if !defined(PROTOTYPE)
#if defined(__STDC__) || defined(_WINDOWS)
#define PROTOTYPE(x) x
#else
#define PROTOTYPE(x) ()
#endif
+#endif
extern long profile_init
PROTOTYPE ((const char **filenames, profile_t *ret_profile));