blob: 865f9d353a9e27e7d4cdf72427e22bb3404602aa [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 {
9 const char *name;
10 unsigned long value;
11};
12
13extern const struct constant_entry constant_table[];
14
15#endif /* MINIJAIL_LIBCONSTANTS_H_ */