Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Mar 1998 19:08:20 -0700 (MST)
From:      Monte Mitzelfelt <monte@sturgeon.gonefishing.org>
To:        freebsd-doc@FreeBSD.ORG
Subject:   17.2.5. Porting an existing piece of free software
Message-ID:  <Pine.NEB.3.96.980312190647.12225A-100000@sturgeon.gonefishing.org>

next in thread | raw e-mail | index | archive | help
In 17.2.5.1. Before Starting the Port, a snippet of pre-processor code
reads:
    #ifdef (defined(__unix__) || defined(unix)) && !defined(USG)
    #include <sys/param.h>
    #endif

I believe this should be:
    #if (defined(__unix__) || defined(unix)) && !defined(USG)
    #include <sys/param.h>
    #endif

Thanks,
Monte Mitzelfelt



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-doc" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.NEB.3.96.980312190647.12225A-100000>