summaryrefslogtreecommitdiff
path: root/hw/xfree86/parser/read.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/xfree86/parser/read.c')
-rw-r--r--hw/xfree86/parser/read.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/hw/xfree86/parser/read.c b/hw/xfree86/parser/read.c
index 748a2ca3c..b044a6af8 100644
--- a/hw/xfree86/parser/read.c
+++ b/hw/xfree86/parser/read.c
@@ -90,7 +90,7 @@ xf86validateConfig (XF86ConfigPtr p)
return (TRUE);
}
-_X_EXPORT XF86ConfigPtr
+XF86ConfigPtr
xf86readConfigFile (void)
{
int token;
@@ -240,7 +240,7 @@ xf86readConfigFile (void)
* A pointer to the head of the list is returned to handle the addition of
* the first item.
*/
-_X_EXPORT GenericListPtr
+GenericListPtr
xf86addListItem (GenericListPtr head, GenericListPtr new)
{
GenericListPtr p = head;
@@ -265,7 +265,7 @@ xf86addListItem (GenericListPtr head, GenericListPtr new)
* Test if one chained list contains the other.
* In this case both list have the same endpoint (provided they don't loop)
*/
-_X_EXPORT int
+int
xf86itemNotSublist(GenericListPtr list_1, GenericListPtr list_2)
{
GenericListPtr p = list_1;
@@ -285,7 +285,7 @@ xf86itemNotSublist(GenericListPtr list_1, GenericListPtr list_2)
return (!(last_1 == last_2));
}
-_X_EXPORT void
+void
xf86freeConfig (XF86ConfigPtr p)
{
if (p == NULL)