[includes] replace header guards with #pragma once

This commit is contained in:
Travis Geiselbrecht
2019-07-06 14:02:47 -07:00
parent d10eb9a8f6
commit 3aecdda231
143 changed files with 146 additions and 544 deletions

View File

@@ -5,8 +5,7 @@
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT
*/
#ifndef __LIB_TEXT_H
#define __LIB_TEXT_H
#pragma once
#include <lib/font.h>
@@ -17,5 +16,3 @@ void text_draw(int x, int y, const char *string);
/* super dumb, someone has to call this to refresh everything */
void text_update(void);
#endif