aboutsummaryrefslogtreecommitdiffstats
path: root/qsort_long.c
diff options
context:
space:
mode:
Diffstat (limited to 'qsort_long.c')
-rw-r--r--qsort_long.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/qsort_long.c b/qsort_long.c
new file mode 100644
index 0000000..cd0581e
--- /dev/null
+++ b/qsort_long.c
@@ -0,0 +1,18 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+#ifndef TEST
+
+
+extern inline void libsimple_qsort_long(long int[], size_t);
+
+
+#else
+#include "test.h"
+
+int
+main(void)
+{
+ return 0;
+}
+
+#endif