Mike Frysinger | 4c33189 | 2022-09-13 05:17:08 -0400 | [diff] [blame] | 1 | /* Copyright 2015 The ChromiumOS Authors |
Luis Hector Chavez | 40b2574 | 2013-09-22 19:44:06 -0700 | [diff] [blame] | 2 | * 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 | |
| 8 | struct constant_entry { |
Jorge Lucangeli Obes | db0bc67 | 2016-08-03 10:45:21 -0400 | [diff] [blame] | 9 | const char *name; |
| 10 | unsigned long value; |
Luis Hector Chavez | 40b2574 | 2013-09-22 19:44:06 -0700 | [diff] [blame] | 11 | }; |
| 12 | |
| 13 | extern const struct constant_entry constant_table[]; |
| 14 | |
| 15 | #endif /* MINIJAIL_LIBCONSTANTS_H_ */ |