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

From: Calin A. Culianu (calin@ajvar.org)
Date: Mon May 27 2002 - 00:28:13 EST


> 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/



This archive was generated by hypermail 2b29 : Fri May 31 2002 - 22:00:19 EST