34 lines
1022 B
C
34 lines
1022 B
C
/* Copyright (c) 1990, 1991 UNIX System Laboratories, Inc. */
|
|
/* Copyright (c) 1984, 1986, 1987, 1988, 1989, 1990 AT&T */
|
|
/* All Rights Reserved */
|
|
|
|
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF */
|
|
/* UNIX System Laboratories, Inc. */
|
|
/* The copyright notice above does not evidence any */
|
|
/* actual or intended publication of such source code. */
|
|
|
|
#ifndef _ACC_MAC_CCA_H /* wrapper symbol for kernel use */
|
|
#define _ACC_MAC_CCA_H /* subject to change without notice */
|
|
|
|
#ident "@(#)uts-comm:acc/mac/cca.h 1.2"
|
|
|
|
/*
|
|
* This file is for Covert Channel Analysis use only.
|
|
*/
|
|
|
|
/*
|
|
* #defines for MAC policy in the SysV 4.0 security enhancements.
|
|
* These defines are used only in the covert channel analysis.
|
|
*/
|
|
|
|
/* @(#)uts-comm:acc/mac/cca.h 1.2 (Motorola) */
|
|
|
|
#define MAC_ASSERT(PTR,REL) (0)
|
|
#define MAC_ASSUME(PTR,REL) (0)
|
|
#define MAC_VALIDPTR(PTR) (0)
|
|
#define MAC_GIVESVAL(EXPR,VAL) (0)
|
|
#define MAC_NOTGIVESVAL(EXPR,VAL) (0)
|
|
#define MAC_UNKLEV(PTR) (0)
|
|
|
|
#endif /* _ACC_MAC_CCA_H */
|