summaryrefslogtreecommitdiffstats
path: root/shlibs/mount/src/mountP.h
diff options
context:
space:
mode:
authorKarel Zak2009-11-26 17:27:13 +0100
committerKarel Zak2010-06-03 15:20:10 +0200
commitf4ab4ae8eb49b99e61f9f8ba59de7195342a8a02 (patch)
tree604a55fbac5917dbaadcae5ad1cc5e1ec22e1682 /shlibs/mount/src/mountP.h
parentlibmount: add basic dirs (diff)
downloadkernel-qcow2-util-linux-f4ab4ae8eb49b99e61f9f8ba59de7195342a8a02.tar.gz
kernel-qcow2-util-linux-f4ab4ae8eb49b99e61f9f8ba59de7195342a8a02.tar.xz
kernel-qcow2-util-linux-f4ab4ae8eb49b99e61f9f8ba59de7195342a8a02.zip
libmount: add version.c
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'shlibs/mount/src/mountP.h')
-rw-r--r--shlibs/mount/src/mountP.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/shlibs/mount/src/mountP.h b/shlibs/mount/src/mountP.h
new file mode 100644
index 000000000..2a486f02a
--- /dev/null
+++ b/shlibs/mount/src/mountP.h
@@ -0,0 +1,21 @@
+/*
+ * mountP.h - private library header file
+ *
+ * Copyright (C) 2008-2009 Karel Zak <kzak@redhat.com>
+ *
+ * This file may be redistributed under the terms of the
+ * GNU Lesser General Public License.
+ */
+
+#ifndef _LIBMOUNT_PRIVATE_H
+#define _LIBMOUNT_PRIVATE_H
+
+/* features */
+#define CONFIG_LIBMOUNT_ASSERT
+
+#ifdef CONFIG_LIBMOUNT_ASSERT
+#include <assert.h>
+#endif
+
+#include "mount.h"
+#endif