summaryrefslogtreecommitdiff
path: root/ULibc.pas
diff options
context:
space:
mode:
Diffstat (limited to 'ULibc.pas')
-rw-r--r--ULibc.pas1
1 files changed, 1 insertions, 0 deletions
diff --git a/ULibc.pas b/ULibc.pas
index 50996bd..edccfc8 100644
--- a/ULibc.pas
+++ b/ULibc.pas
@@ -892,6 +892,7 @@ function getegid: __gid_t; cdecl; external GLIBC_LIB name 'getegid';
function access(pathname: PChar; mode: Longint): Longint; cdecl; external GLIBC_LIB name 'access';
function euidaccess(pathname: PChar; mode: Longint): Longint; cdecl; external GLIBC_LIB name 'euidaccess';
+function setenv(name: PChar; value: PChar; overwrite: Longint): Longint; cdecl; external GLIBC_LIB name 'setenv';
type pthread_t = {$ifdef cpu64}QWord{$else}DWord{$endif};