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