summaryrefslogtreecommitdiff
path: root/update_ev_wrap
diff options
context:
space:
mode:
Diffstat (limited to 'update_ev_wrap')
-rwxr-xr-xupdate_ev_wrap4
1 files changed, 2 insertions, 2 deletions
diff --git a/update_ev_wrap b/update_ev_wrap
index adb083a..995ea0c 100755
--- a/update_ev_wrap
+++ b/update_ev_wrap
@@ -11,9 +11,9 @@
print "/* DO NOT EDIT, automatically generated by update_ev_wrap */\n",
"#ifndef EV_WRAP_H\n",
"#define EV_WRAP_H\n",
- (map "#define $_ ((loop)->$_)\n", @syms),
+ (map "#define $_ ((loop)->$_)\n", sort @syms),
"#else\n",
"#undef EV_WRAP_H\n",
- (map "#undef $_\n", @syms),
+ (map "#undef $_\n", sort @syms),
"#endif\n";
' >ev_wrap.h