summaryrefslogtreecommitdiff
path: root/src/w32fns.c
diff options
context:
space:
mode:
authorGeoff Voelker <voelker@cs.washington.edu>1998-12-02 23:00:29 +0000
committerGeoff Voelker <voelker@cs.washington.edu>1998-12-02 23:00:29 +0000
commit83c75055bc8fc08b34422b2976d442f7f8127cc8 (patch)
tree676752034f0c93945964f129986f4ff9c8ffb03a /src/w32fns.c
parentdba46b7c5dbb9b8520f9d2afd9ff247c36b34235 (diff)
downloademacs-83c75055bc8fc08b34422b2976d442f7f8127cc8.tar.gz
(w32_last_error): Fix cut+paste error.
Diffstat (limited to 'src/w32fns.c')
-rw-r--r--src/w32fns.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/w32fns.c b/src/w32fns.c
index c11c3d5c841..b501d19db2d 100644
--- a/src/w32fns.c
+++ b/src/w32fns.c
@@ -6899,12 +6899,6 @@ displayed according to the current fontset.");
#undef abort
void
-/* For convenience when debugging. */
-int
-w32_last_error()
-{
- return GetLastError ();
-}
w32_abort()
{
int button;
@@ -6928,3 +6922,9 @@ w32_abort()
}
}
+/* For convenience when debugging. */
+int
+w32_last_error()
+{
+ return GetLastError ();
+}