xref: /netbsd-src/external/gpl2/diffutils/dist/lib/quotesys.h (revision d16b7486a53dcb8072b60ec6fcb4373a2d0c27b7)
1 /*	$NetBSD: quotesys.h,v 1.1.1.1 2016/01/13 03:15:30 christos Exp $	*/
2 
3 /* quotesys.h -- declarations for quoting system arguments */
4 
5 #if defined __STDC__ || __GNUC__
6 # define __QUOTESYS_P(args) args
7 #else
8 # define __QUOTESYS_P(args) ()
9 #endif
10 
11 size_t quote_system_arg __QUOTESYS_P ((char *, char const *));
12