Commit 26d8701a authored by Damjan Jovanovic's avatar Damjan Jovanovic Committed by Alexandre Julliard

ntdll: Implement get_device_mount_point() on FreeBSD.

parent d5406d02
...@@ -944,7 +944,7 @@ static char *get_device_mount_point( dev_t dev ) ...@@ -944,7 +944,7 @@ static char *get_device_mount_point( dev_t dev )
fclose( f ); fclose( f );
} }
mutex_unlock( &mnt_mutex ); mutex_unlock( &mnt_mutex );
#elif defined(__APPLE__) #elif defined(__APPLE__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
struct statfs *entry; struct statfs *entry;
struct stat st; struct stat st;
int i, size; int i, 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