LWN.net Logo

Dennis Ritchie RIP

Dennis Ritchie RIP

Posted Oct 13, 2011 9:41 UTC (Thu) by richmoore (subscriber, #53133)
Parent article: Dennis Ritchie RIP

#include <stdlib.h>

/* Thanks for the most popular programming language ever Dennis. */
int main(int argc, char **argv)
{
exit(EXIT_SUCCESS);
}


(Log in to post comments)

Dennis Ritchie RIP

Posted Oct 13, 2011 10:49 UTC (Thu) by sorpigal (subscriber, #36106) [Link]

#include <stdio.h>

int main(void)
{
    printf("Goodbye, Dennis\n");
    return 0;
}

Dennis Ritchie RIP

Posted Oct 13, 2011 11:35 UTC (Thu) by csamuel (✭ supporter ✭, #2624) [Link]

#include <unistd.h>
#include <stdlib.h>

int main(void)
{
    (void) sleep(60);  /* A minutes silence for DMR */
    exit(EXIT_SUCCESS);
}

Copyright © 2013, Eklektix, Inc.
Comments and public postings are copyrighted by their creators.
Linux is a registered trademark of Linus Torvalds