soq icon indicating copy to clipboard operation
soq copied to clipboard

Stack Overflow Questions and Answers

Results 2 soq issues
Sort by recently updated
recently updated
newest added

Command: ``` $ cd src/libsoq $ make ``` Output: ``` gcc -O3 -g -I../../inc -std=c18 -Wall -Wextra -Werror -Wmissing-prototypes -Wstrict-prototypes -fno-common -DHAVE_NANOSLEEP -c -o mddebug.o mddebug.c mddebug.c:20:10: fatal error: jlss-getopt.h:...

https://github.com/jleffler/soq/blob/bb84e0704fb66a558fbcf507f43e76a7a547930e/src/libsoq/debug.c#L57C1-L59C1 ```c if (debugfp != stdin && debugfp != stdout && debugfp != stderr) fclose(debugfp); debugfp = dbfp; ``` In `main`: ```c db_setfileptr(stderr); ``` Here, `debugfp` is initialized with 0...