summaryrefslogtreecommitdiff
path: root/quotearg.h
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2009-03-12 15:14:29 +0100
committerAndreas Gruenbacher <agruen@suse.de>2009-03-12 15:14:29 +0100
commit1adb4535a31d825f10a5bd1ef10b52a7425073bd (patch)
tree1a9a12d04c92d4d93a4b7d8a09af635a8f93fa63 /quotearg.h
parentbcce1233902dc7a94623b3a90cd7920c44f22474 (diff)
downloadpatch-1adb4535a31d825f10a5bd1ef10b52a7425073bd.tar.gz
Import of patch-2.3.tar.gzv2.3
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 *));