summaryrefslogtreecommitdiff
path: root/FL/fl_attr.h
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2021-10-17 12:24:39 +0200
committerAlbrecht Schlosser <albrechts.fltk@online.de>2021-10-17 12:24:39 +0200
commit8863ef79012f6c1329db53855572b3bec045dbd4 (patch)
tree8fa2244e6608cba050a334d182495abad111d26d /FL/fl_attr.h
parent6c2bc5b02fdc30b9c8149ff8f7e22e056f75ead1 (diff)
Avoid multiple definition of macro __fl_attr()
This could happen if both FL/fl_ask.H and fluid/Fl_Type.h were included in the same file.
Diffstat (limited to 'FL/fl_attr.h')
-rw-r--r--FL/fl_attr.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/FL/fl_attr.h b/FL/fl_attr.h
new file mode 100644
index 000000000..32e88a2a4
--- /dev/null
+++ b/FL/fl_attr.h
@@ -0,0 +1,34 @@
+/*
+ * Function attribute declarations for the Fast Light Tool Kit (FLTK).
+ *
+ * Copyright 1998-2021 by Bill Spitzak and others.
+ *
+ * This library is free software. Distribution and use rights are outlined in
+ * the file "COPYING" which should have been included with this file. If this
+ * file is missing or damaged, see the license at:
+ *
+ * https://www.fltk.org/COPYING.php
+ *
+ * Please see the following page on how to report bugs and issues:
+ *
+ * https://www.fltk.org/bugs.php
+ */
+
+#ifndef _FL_fl_attr_h_
+#define _FL_fl_attr_h_
+
+/*
+ The GNUC-specific attribute appearing below in prototypes with a variable
+ list of arguments helps detection of mismatches between format string and
+ argument list at compilation time.
+
+ Examples: see fl_ask.H
+*/
+
+#ifdef __GNUC__
+# define __fl_attr(x) __attribute__ (x)
+#else
+# define __fl_attr(x)
+#endif
+
+#endif /* !_FL_fl_attr_h_ */