summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--minilib/stdlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/minilib/stdlib.c b/minilib/stdlib.c
index 53ae0df..b6499a4 100644
--- a/minilib/stdlib.c
+++ b/minilib/stdlib.c
@@ -8,7 +8,7 @@ static void strreverse( char *s )
char *end = s + strlen( s ) - 1;
while( s < end ) {
- // XOR swap;
+ /* XOR swap; */
*s ^= *end;
*end ^= *s;
*s ^= *end;