summaryrefslogtreecommitdiff
path: root/quotearg.h
diff options
context:
space:
mode:
Diffstat (limited to 'quotearg.h')
-rw-r--r--quotearg.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/quotearg.h b/quotearg.h
new file mode 100644
index 0000000..f32f919
--- /dev/null
+++ b/quotearg.h
@@ -0,0 +1,9 @@
+/* quote.h -- declarations for quoting system arguments */
+
+#if defined __STDC__ || __GNUC__
+# define __QUOTEARG_P(args) args
+#else
+# define __QUOTEARG_P(args) ()
+#endif
+
+size_t quote_system_arg __QUOTEARG_P ((char *, char const *));