1/* 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_ */
16