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