[kernel] test run sorting some includes

No functional change.
This commit is contained in:
Travis Geiselbrecht
2019-07-13 17:21:00 -07:00
parent 4aa556b837
commit df32504748
31 changed files with 109 additions and 100 deletions

View File

@@ -14,10 +14,11 @@
* limitations under the License.
*/
#include <kernel/semaphore.h>
#include <kernel/thread.h>
#include <lk/debug.h>
#include <lk/err.h>
#include <kernel/semaphore.h>
#include <kernel/thread.h>
void sem_init(semaphore_t *sem, unsigned int value) {
*sem = (semaphore_t)SEMAPHORE_INITIAL_VALUE(*sem, value);