Fix "warning: #1-D: last line of file ends without a newline."

And make the end of the file consistent.

Signed-off-by: Yuhui Zheng <10982575+yuhui-zheng@users.noreply.github.com>
This commit is contained in:
Yuhui Zheng 2020-02-26 11:13:28 -08:00 committed by Yuhui.Zheng
parent 32039f1933
commit fd8dae8a25
2 changed files with 5 additions and 1 deletions

View File

@ -163,3 +163,5 @@ int pthread_barrier_wait( pthread_barrier_t * barrier )
return iStatus; return iStatus;
} }
/*-----------------------------------------------------------*/

View File

@ -291,4 +291,6 @@ int pthread_cond_wait( pthread_cond_t * cond,
pthread_mutex_t * mutex ) pthread_mutex_t * mutex )
{ {
return pthread_cond_timedwait( cond, mutex, NULL ); return pthread_cond_timedwait( cond, mutex, NULL );
} }
/*-----------------------------------------------------------*/