1 /*
2  * Copyright (c) 2013, Joyent, Inc.
3  * See LICENSE file for copyright and license details.
4  */
5 
6 #ifndef _REQID_H
7 #define	_REQID_H
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 #define	REQID_LEN	9
14 
15 int reqid_init(void);
16 void reqid_fini(void);
17 char * reqid(char *buf);
18 
19 #ifdef __cplusplus
20 }
21 #endif
22 
23 #endif /* _REQID_H */
24