New test.
[mono.git] / eglib / src / gslist.c
index da8bb3a87a39f1b54b4d07a72162a9245e23b157..01c3f99cedb93e0b2c57a4d11f17a29b0c718941 100644 (file)
@@ -1,8 +1,9 @@
 /*
  * gslist.c: Singly-linked list implementation
  *
- * Author:
+ * Authors:
  *   Duncan Mak (duncan@novell.com)
+ *   Raja R Harinath (rharinath@novell.com)
  *
  * Permission is hereby granted, free of charge, to any person obtaining
  * a copy of this software and associated documentation files (the
@@ -299,7 +300,7 @@ g_slist_insert_sorted (GSList *list, gpointer data, GCompareFunc func)
        return list;
 }
 
-typedef GSList *digit;
+typedef GSList list_node;
 #include "sort.frag.h"
 
 GSList*
@@ -307,5 +308,5 @@ g_slist_sort (GSList *list, GCompareFunc func)
 {
        if (!list || !list->next)
                return list;
-       return do_sort (list, func);    
+       return do_sort (list, func);
 }