Commit 3ae113a9 authored by Felix Janda's avatar Felix Janda Committed by Alexandre Julliard

ntdll: getdents64 might have been defined previously.

parent 4fde1e23
......@@ -119,6 +119,7 @@ typedef struct
char d_name[256];
} KERNEL_DIRENT64;
#undef getdents64
static inline int getdents64( int fd, char *de, unsigned int size )
{
return syscall( __NR_getdents64, fd, de, size );
......
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