blob: 0548de912d82fbe222884430e7b7b3b83059de7f [file] [log] [blame]
Mike Frysinger4c331892022-09-13 05:17:08 -04001/* Copyright 2015 The ChromiumOS Authors
Luis Hector Chavez40b25742013-09-22 19:44:06 -07002 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5#ifndef MINIJAIL_LIBCONSTANTS_H_
6#define MINIJAIL_LIBCONSTANTS_H_
7
8struct constant_entry {
Jorge Lucangeli Obesdb0bc672016-08-03 10:45:21 -04009 const char *name;
10 unsigned long value;
Luis Hector Chavez40b25742013-09-22 19:44:06 -070011};
12
13extern const struct constant_entry constant_table[];
14
15#endif /* MINIJAIL_LIBCONSTANTS_H_ */