Commit c35df50c authored by Ismael Luceno's avatar Ismael Luceno Committed by Alexandre Julliard

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: 's avatarIsmael Luceno <ismael@iodev.co.uk> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 92f2d659
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment