Fix empty struct thread_rwlockattr_t.

This commit is contained in:
Jonas 'Sortie' Termansen 2017-07-10 21:31:59 +02:00
parent c14d7fa3b8
commit 07e6c69097
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2014 Jonas 'Sortie' Termansen.
* Copyright (c) 2013, 2014, 2017 Jonas 'Sortie' Termansen.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -147,10 +147,12 @@ typedef struct
#if defined(__is_sortix_libc)
typedef struct
{
char __structure_is_non_empty;
} __pthread_rwlockattr_t;
#else
typedef struct
{
char __structure_is_non_empty;
} __pthread_rwlockattr_t;
#endif