[BACK]Return to Lint_swapcontext.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / gen

Annotation of src/lib/libc/gen/Lint_swapcontext.c, Revision 1.2

1.2     ! thorpej     1: /*     $NetBSD: Lint_swapcontext.c,v 1.1.2.1 2001/03/05 23:34:38 nathanw Exp $ */
        !             2:
        !             3: /*
        !             4:  * This file placed in the public domain.
        !             5:  * Klaus Klein, November 29, 1998.
        !             6:  */
        !             7:
        !             8: #include <ucontext.h>
        !             9:
        !            10: /*ARGSUSED*/
        !            11: int
        !            12: swapcontext(oucp, ucp)
        !            13:        ucontext_t *oucp;
        !            14:        const ucontext_t *ucp;
        !            15: {
        !            16:
        !            17:        return (0);
        !            18: }

CVSweb <webmaster@jp.NetBSD.org>