changeset 23801:119fd94ae526

(w32_last_error): Fix cut+paste error.
author Geoff Voelker <voelker@cs.washington.edu>
date Wed, 02 Dec 1998 23:00:29 +0000
parents a7dd4cded68c
children 4052a2875390
files src/w32fns.c
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/src/w32fns.c	Wed Dec 02 23:00:14 1998 +0000
+++ b/src/w32fns.c	Wed Dec 02 23:00:29 1998 +0000
@@ -6899,12 +6899,6 @@
 #undef abort
 
 void 
-/* For convenience when debugging.  */
-int
-w32_last_error()
-{
-  return GetLastError ();
-}
 w32_abort()
 {
   int button;
@@ -6928,3 +6922,9 @@
     }
 }
 
+/* For convenience when debugging.  */
+int
+w32_last_error()
+{
+  return GetLastError ();
+}