aboutsummaryrefslogtreecommitdiffstats
path: root/com32/include
diff options
context:
space:
mode:
authorhpa <hpa>2005-01-20 18:41:12 +0000
committerhpa <hpa>2005-01-20 18:41:12 +0000
commitd952fbec351096681f3ce4a1e96740395ecf619e (patch)
tree58c2c08959479c161fdb3589207180e823be5e23 /com32/include
parent15088eec8155b23f6768a6412229300b56f8bffb (diff)
downloadsyslinux-d952fbec351096681f3ce4a1e96740395ecf619e.tar.gz
syslinux-d952fbec351096681f3ce4a1e96740395ecf619e.tar.xz
syslinux-d952fbec351096681f3ce4a1e96740395ecf619e.zip
Move idle function into libcom32; libutil function is now just a wrapper.
Diffstat (limited to 'com32/include')
-rw-r--r--com32/include/syslinux.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/com32/include/syslinux.h b/com32/include/syslinux.h
new file mode 100644
index 00000000..c7510076
--- /dev/null
+++ b/com32/include/syslinux.h
@@ -0,0 +1,40 @@
+#ident "$Id$"
+/* ----------------------------------------------------------------------- *
+ *
+ * Copyright 2005 H. Peter Anvin - All Rights Reserved
+ *
+ * Permission is hereby granted, free of charge, to any person
+ * obtaining a copy of this software and associated documentation
+ * files (the "Software"), to deal in the Software without
+ * restriction, including without limitation the rights to use,
+ * copy, modify, merge, publish, distribute, sublicense, and/or
+ * sell copies of the Software, and to permit persons to whom
+ * the Software is furnished to do so, subject to the following
+ * conditions:
+ *
+ * The above copyright notice and this permission notice shall
+ * be included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+ * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+ * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+ * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+ * OTHER DEALINGS IN THE SOFTWARE.
+ *
+ * ----------------------------------------------------------------------- */
+
+/*
+ * syslinux.h
+ *
+ * SYSLINUX-specific functions
+ */
+
+#ifndef _SYSLINUX_H
+#define _SYSLINUX_H
+
+void syslinux_idle(void);
+
+#endif