diff options
author | Rob Landley <rob@landley.net> | 2019-05-12 16:31:18 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-05-13 01:55:49 -0500 |
commit | 3e374556fe70b4fa8fda1a23151c22759dc10bff (patch) | |
tree | 570ada21a96c268b6dfd3b678e638119c26ecc6b /lib | |
parent | e8688a3d4520f1e62586c3f8115646116455d3e6 (diff) | |
download | toybox-3e374556fe70b4fa8fda1a23151c22759dc10bff.tar.gz |
Comment tweak.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/args.c | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -3,11 +3,9 @@ * Copyright 2006 Rob Landley <rob@landley.net> */ -// NOTE: If option parsing segfaults, switch on TOYBOX_DEBUG in menuconfig. - -// Enabling TOYBOX_DEBUG in .config adds syntax checks to option string parsing -// which aren't needed in the final code (your option string is hardwired and -// should be correct when you ship), but are useful for development. +// NOTE: If option parsing segfaults, switch on TOYBOX_DEBUG in menuconfig to +// add syntax checks to option string parsing which aren't needed in the final +// code (since get_opt string is hardwired and should be correct when you ship) #include "toys.h" |