blob: cdbc4bd3c91c55fa78b3740af90ec9e22f81d096 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* $Id: strmode.h,v 1.3 2001/06/09 02:22:17 mouring Exp $ */
#ifndef _STRMODE_H
#define _STRMODE_H
#pragma ident "%Z%%M% %I% %E% SMI"
#ifdef __cplusplus
extern "C" {
#endif
#ifndef HAVE_STRMODE
void strmode(register mode_t mode, register char *p);
#endif
#ifdef __cplusplus
}
#endif
#endif /* _STRMODE_H */
|