1 /* $NetBSD: savedir.h,v 1.1.1.1 2016/01/10 21:36:19 christos Exp $ */ 2 3 #if !defined SAVEDIR_H_ 4 # define SAVEDIR_H_ 5 6 #include "exclude.h" 7 8 # ifndef PARAMS 9 # if defined PROTOTYPES || (defined __STDC__ && __STDC__) 10 # define PARAMS(Args) Args 11 # else 12 # define PARAMS(Args) () 13 # endif 14 # endif 15 16 extern char * 17 savedir PARAMS ((const char *dir, off_t name_size, 18 struct exclude *, struct exclude *)); 19 20 #endif 21