summaryrefslogtreecommitdiff
path: root/gnulib/lib/di-set.h
diff options
context:
space:
mode:
Diffstat (limited to 'gnulib/lib/di-set.h')
m---------gnulib0
-rw-r--r--gnulib/lib/di-set.h19
2 files changed, 19 insertions, 0 deletions
diff --git a/gnulib b/gnulib
deleted file mode 160000
-Subproject 443bc5ffcf7429e557f4a371b0661abe98ddbc1
diff --git a/gnulib/lib/di-set.h b/gnulib/lib/di-set.h
new file mode 100644
index 0000000..abc3161
--- /dev/null
+++ b/gnulib/lib/di-set.h
@@ -0,0 +1,19 @@
+#ifndef _GL_DI_SET_H
+# define _GL_DI_SET_H
+
+# include <sys/types.h>
+
+# undef _GL_ATTRIBUTE_NONNULL
+# if __GNUC__ == 3 && __GNUC_MINOR__ >= 3 || 3 < __GNUC__
+# define _GL_ATTRIBUTE_NONNULL(m) __attribute__ ((__nonnull__ (m)))
+# else
+# define _GL_ATTRIBUTE_NONNULL(m)
+# endif
+
+struct di_set *di_set_alloc (void);
+int di_set_insert (struct di_set *, dev_t, ino_t) _GL_ATTRIBUTE_NONNULL (1);
+void di_set_free (struct di_set *) _GL_ATTRIBUTE_NONNULL (1);
+int di_set_lookup (struct di_set *dis, dev_t dev, ino_t ino)
+ _GL_ATTRIBUTE_NONNULL (1);
+
+#endif