c8a0e2f4c6
This commit finalizes support for cross compilation. The tools directory are all links to the actual tools and are built on the host system to build Minix. build.sh is the work horse that takes care of all environment settings. It's slightly adjusted for Minix. The /usr/src/Makefile has additional targets needed for cross compilation.
21 lines
344 B
C
21 lines
344 B
C
/* $NetBSD: issetugid.c,v 1.2 2003/10/27 00:12:43 lukem Exp $ */
|
|
|
|
/*
|
|
* Written by Ben Harris, 2002
|
|
* This file is in the Public Domain
|
|
*/
|
|
|
|
#include "nbtool_config.h"
|
|
|
|
#if !HAVE_ISSETUGID
|
|
int
|
|
issetugid(void)
|
|
{
|
|
|
|
/*
|
|
* Assume that anything linked against libnbcompat will be installed
|
|
* without special privileges.
|
|
*/
|
|
return 0;
|
|
}
|
|
#endif
|