2007-11-17 19:34:05 +05:30
|
|
|
#ifndef _NSCD_H_
|
|
|
|
#define _NSCD_H_
|
2007-10-07 17:15:23 +05:30
|
|
|
|
|
|
|
/*
|
2007-11-17 19:34:05 +05:30
|
|
|
* nscd_flush_cache - flush specified service buffer in nscd cache
|
2007-10-07 17:15:23 +05:30
|
|
|
*/
|
2008-08-31 00:00:36 +05:30
|
|
|
#ifdef USE_NSCD
|
2008-01-06 19:27:17 +05:30
|
|
|
extern int nscd_flush_cache (const char *service);
|
2008-08-31 00:00:36 +05:30
|
|
|
#else
|
|
|
|
#define nscd_flush_cache(service) (0)
|
|
|
|
#endif
|
2007-10-07 17:15:23 +05:30
|
|
|
|
|
|
|
#endif
|