Skip to content
Snippets Groups Projects
Commit 9dceae5d authored by rswindell's avatar rswindell
Browse files

Fixed missing preprocessor directive (#endif).

parent 11b73134
No related branches found
No related tags found
No related merge requests found
......@@ -335,10 +335,12 @@ ulong _beginthread(void( *start_address )( void * )
return(-1); /* error */
}
#else /* _POSIX_THREADS */
#else
#error "Need _beginthread implementation for non-POSIX thread library."
#endif
#endif /* __unix__ */
/****************************************************************************/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment