blob: c289955265c7186be472a670fae42124daa5f0ca [file] [log] [blame]
Luis Hector Chavez40b25742013-09-22 19:44:06 -07001/* Copyright 2015 The Chromium OS Authors. All rights reserved.
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
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_ */