Re: patent on O_ATOMICLOOKUP [Re: [PATCH] loopable tmpfs (2.4.17)]

Calin A. Culianu (calin@ajvar.org)
Mon, 27 May 2002 01:28:13 -0400 (EDT)


> Robert
> ¹ There are surely small things which cannot be implemented in
> another way - try to write a counting loop in another way than
> for (i=0; i<N; i++) {printf(i);}
>

void loopie(int N)
{
if (N) loopie(N-1);
printf("%d ",N);
}

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/