~ubuntu-branches/ubuntu/breezy/checkpolicy/breezy

« back to all changes in this revision

Viewing changes to checkpolicy.h

  • Committer: Bazaar Package Importer
  • Author(s): Russell Coker
  • Date: 2004-05-20 04:32:00 UTC
  • Revision ID: james.westby@ubuntu.com-20040520043200-w4lzkx37dmmc3wt9
Tags: upstream-1.10
ImportĀ upstreamĀ versionĀ 1.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _CHECKPOLICY_H_
 
2
#define _CHECKPOLICY_H_
 
3
 
 
4
#include "ebitmap.h"
 
5
 
 
6
typedef struct te_assert { 
 
7
        ebitmap_t stypes;
 
8
        ebitmap_t ttypes;
 
9
        ebitmap_t tclasses;
 
10
        int self;
 
11
        access_vector_t *avp;
 
12
        unsigned long line;
 
13
        struct te_assert *next;
 
14
} te_assert_t;
 
15
 
 
16
te_assert_t *te_assertions;
 
17
 
 
18
#endif