application: replace ifndef by pragma

This commit is contained in:
Jeremy Attali 2019-12-16 22:11:05 -05:00
parent 91976ee295
commit b41c572f1e

View File

@ -1,5 +1,4 @@
#ifndef _APPLICATION_H
#define _APPLICATION_H
#pragma once
#include "swappy.h"
@ -7,4 +6,3 @@ bool application_init(struct swappy_state *state);
int application_run(struct swappy_state *state);
void application_finish(struct swappy_state *state);
#endif