00001 /* 00002 Copyright (C) 2012- The University of Notre Dame 00003 This software is distributed under the GNU General Public License. 00004 See the file COPYING for details. 00005 */ 00006 00007 #ifndef NVPAIR_PRIVATE_H 00008 #define NVPAIR_PRIVATE_H 00009 00010 /* 00011 The definition of an nvpair object is shared among nvpair.h 00012 and nvpair_history.h, but is not generally a public interface. 00013 */ 00014 00015 struct nvpair { 00016 struct hash_table *table; 00017 }; 00018 00019 #endif