cctools
nvpair_private.h
1 /*
2 Copyright (C) 2012- The University of Notre Dame
3 This software is distributed under the GNU General Public License.
4 See the file COPYING for details.
5 */
6 
7 #ifndef NVPAIR_PRIVATE_H
8 #define NVPAIR_PRIVATE_H
9 
10 /*
11 The definition of an nvpair object is shared among nvpair.h
12 and nvpair_history.h, but is not generally a public interface.
13 */
14 
15 struct nvpair {
16  struct hash_table *table;
17 };
18 
19 #endif
Definition: nvpair_private.h:15