In article <[EMAIL PROTECTED]>,
sena  <[EMAIL PROTECTED]> wrote:
>I heard that Jonathan Markevich wrote this on 29/10/00:
>
>> However, writing one in C proved to be simple, and an afternoon's worth
>> of fun. 
>>
>--(snip - false.c)--
>       int main() { return 1; }
>--(snip - false.c)--
>10 seconds writing plus 3 minutes worth of fun is more like it... :)

Ah, way too big ...

#include <linux/unistd.h>
#include <asm/unistd.h>

int errno;

_syscall1(void, exit, int, status);

int main(void)
{
        exit(1);
}

void *_start = main;

Compile with cc -s -o false -nostdlib false.c

Mike.
-- 
People get the operating system they deserve.

Reply via email to