JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Remove strsep() call
authorRoberto E. Vargas Caballero <k0ga@shike2.com>
Fri, 20 Mar 2015 06:46:59 +0000 (06:46 +0000)
committerRoberto E. Vargas Caballero <k0ga@shike2.com>
Fri, 20 Mar 2015 07:29:28 +0000 (07:29 +0000)
strsep() is not a POSIX function, and it means that every system
needs different defines to expose it. If the prototype of strsep
is not exposed then an ugly int/pointer is done and it might mean
a crash. The best solution?, to remove the strsep and make a custom
loop. If C programmers cannot do this kind of loops without calling
a library function, then maybe we should move all the suckless
software to Java.


No differences found