xref: /illumos-gate/usr/src/cmd/chmod/msgs.h (revision 6ed89227090376191da773511ff4d6fccf59376e)
1*6ed89227SToomas Soome /*
2*6ed89227SToomas Soome  * This file and its contents are supplied under the terms of the
3*6ed89227SToomas Soome  * Common Development and Distribution License ("CDDL"), version 1.0.
4*6ed89227SToomas Soome  * You may only use this file in accordance with the terms of version
5*6ed89227SToomas Soome  * 1.0 of the CDDL.
6*6ed89227SToomas Soome  *
7*6ed89227SToomas Soome  * A full copy of the text of the CDDL should have accompanied this
8*6ed89227SToomas Soome  * source.  A copy of the CDDL is also available via the Internet at
9*6ed89227SToomas Soome  * http://www.illumos.org/license/CDDL.
10*6ed89227SToomas Soome  */
11*6ed89227SToomas Soome 
12*6ed89227SToomas Soome /*
13*6ed89227SToomas Soome  * Copyright 2026 Copyright 2026 Edgecast Cloud LLC.
14*6ed89227SToomas Soome  */
15*6ed89227SToomas Soome 
16*6ed89227SToomas Soome #ifndef _MSGS_H
17*6ed89227SToomas Soome #define	_MSGS_H
18*6ed89227SToomas Soome 
19*6ed89227SToomas Soome #ifdef __cplusplus
20*6ed89227SToomas Soome extern "C" {
21*6ed89227SToomas Soome #endif
22*6ed89227SToomas Soome 
23*6ed89227SToomas Soome extern void errmsg(int, int, char *, ...) __PRINTFLIKE(3);
24*6ed89227SToomas Soome 
25*6ed89227SToomas Soome #ifdef __cplusplus
26*6ed89227SToomas Soome }
27*6ed89227SToomas Soome #endif
28*6ed89227SToomas Soome 
29*6ed89227SToomas Soome #endif /* _MSGS_H */
30