blob: c1bd92756bd51b347b4841a3d523e6348dbbd613 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* $OpenBSD: uid.c,v 1.8 2014/06/12 15:49:27 deraadt Exp $ */
/*
* Written by Theo de Raadt. Public domain.
*/
#include <unistd.h>
int
OPENSSL_issetugid(void)
{
return issetugid();
}
|