Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Utility I wrote for GNU+Linux

Name: Anonymous 2012-02-13 3:19

It's a small utility like cat or sed that can be used on Linux systems. It's called why. Licensed under the GPLv3 (or later).

Here is the code (save it in `why.c'):
#include <stdio.h>

void main()
{
printf("Fuck you, that's why.\n");

}


Install with:
gcc -o why why.c ;sudo cp ./why /bin/why

Name: Anonymous 2012-06-03 21:31

>>28
All identifiers that begin with an underscore followed by an upper case letter are always reserved for any use by the implementation. You are violating the standard with the names on your enums.

See section 7.1.3 Reserved identifiers in ISO/IEC 9899:TC2 for details.

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List