1178525Sjb/*
2178525Sjb * CDDL HEADER START
3178525Sjb *
4178525Sjb * The contents of this file are subject to the terms of the
5178525Sjb * Common Development and Distribution License, Version 1.0 only
6178525Sjb * (the "License").  You may not use this file except in compliance
7178525Sjb * with the License.
8178525Sjb *
9178525Sjb * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10178525Sjb * or http://www.opensolaris.org/os/licensing.
11178525Sjb * See the License for the specific language governing permissions
12178525Sjb * and limitations under the License.
13178525Sjb *
14178525Sjb * When distributing Covered Code, include this CDDL HEADER in each
15178525Sjb * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16178525Sjb * If applicable, add the following below this CDDL HEADER, with the
17178525Sjb * fields enclosed by brackets "[]" replaced with your own identifying
18178525Sjb * information: Portions Copyright [yyyy] [name of copyright owner]
19178525Sjb *
20178525Sjb * CDDL HEADER END
21178525Sjb */
22178525Sjb/*
23178525Sjb * Copyright (c) 1994 by Sun Microsystems, Inc.
24178525Sjb */
25178525Sjb
26178525Sjb/*
27178525Sjb * note.h:	interface for annotating source with info for tools
28178525Sjb *
29178525Sjb * NOTE is the default interface, but if the identifier NOTE is in use for
30178525Sjb * some other purpose, you may prepare a similar header file using your own
31178525Sjb * identifier, mapping that identifier to _NOTE.  Also, exported header
32178525Sjb * files should *not* use NOTE, since the name may already be in use in
33178525Sjb * a program's namespace.  Rather, exported header files should include
34178525Sjb * sys/note.h directly and use _NOTE.  For consistency, all kernel source
35178525Sjb * should use _NOTE.
36178525Sjb */
37178525Sjb
38178525Sjb#ifndef	_NOTE_H
39178525Sjb#define	_NOTE_H
40178525Sjb
41178525Sjb#pragma ident	"%Z%%M%	%I%	%E% SMI"
42178525Sjb
43178525Sjb#include <sys/note.h>
44178525Sjb
45178525Sjb#ifdef	__cplusplus
46178525Sjbextern "C" {
47178525Sjb#endif
48178525Sjb
49178525Sjb#define	NOTE _NOTE
50178525Sjb
51178525Sjb#ifdef	__cplusplus
52178525Sjb}
53178525Sjb#endif
54178525Sjb
55178525Sjb#endif	/* _NOTE_H */
56