blob: a430b00f055203393eaa99c3fc71e6a38d41e1a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _NSCD_H_
#define _NSCD_H_
/*
* nscd_flush_cache - flush specified service buffer in nscd cache
*/
#ifdef USE_NSCD
extern int nscd_flush_cache (const char *service);
#else
#define nscd_flush_cache(service) (0)
#endif
#endif
|