From a9c0b213ff73e442b9731907561bd3a25225e30e Mon Sep 17 00:00:00 2001 From: fincs Date: Tue, 26 Jun 2018 13:12:44 +0200 Subject: [PATCH] Add missing #pragma once to kernel/condvar.h --- nx/include/switch/kernel/condvar.h | 1 + 1 file changed, 1 insertion(+) diff --git a/nx/include/switch/kernel/condvar.h b/nx/include/switch/kernel/condvar.h index cd428b72..5d05c1f3 100644 --- a/nx/include/switch/kernel/condvar.h +++ b/nx/include/switch/kernel/condvar.h @@ -4,6 +4,7 @@ * @author plutoo * @copyright libnx Authors */ +#pragma once #include "../types.h" #include "../kernel/mutex.h"