server: Fix missing include for uid_t.
Explicitly include <sys/types.h> to make uid_t available to users of server/security.h. This is a problem on musl, and possibly other non-glibc systems. Signed-off-by: Ismael Luceno <ismael@iodev.co.uk> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
92f2d659f5
commit
c35df50c30
|
@ -21,6 +21,8 @@
|
|||
#ifndef __WINE_SERVER_SECURITY_H
|
||||
#define __WINE_SERVER_SECURITY_H
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
extern const LUID SeIncreaseQuotaPrivilege;
|
||||
extern const LUID SeSecurityPrivilege;
|
||||
extern const LUID SeTakeOwnershipPrivilege;
|
||||
|
|
Loading…
Reference in New Issue