This commit was generated by cvs2svn to compensate for changes in r1815,
[bootcd.git] / syslinux / com32 / lib / atexit.h
diff --git a/syslinux/com32/lib/atexit.h b/syslinux/com32/lib/atexit.h
new file mode 100644 (file)
index 0000000..792141d
--- /dev/null
@@ -0,0 +1,17 @@
+/*
+ * atexit.h
+ *
+ * atexit()/on_exit() internal definitions
+ */
+
+#ifndef ATEXIT_H
+#define ATEXIT_H
+
+struct atexit {
+  void (*fctn)(int, void *);
+  void *arg;                   /* on_exit() parameter */
+  struct atexit *next;
+};
+
+#endif /* ATEXIT_H */
+