fix: use `#pragma once' instead of guards

This commit is contained in:
Tom MTT 2022-12-25 01:03:02 +01:00
parent 47e6204e08
commit c2c5440b21
7 changed files with 7 additions and 22 deletions

View file

@ -11,8 +11,7 @@
* <https://basedwa.re/tmtt/feuille/src/branch/main/LICENSE>.
*/
#ifndef _SERVER_H_
#define _SERVER_H_
#pragma once
#include "feuille.h"
@ -23,5 +22,3 @@ void close_connection(int);
unsigned long read_paste(int, char **);
int send_response(int, char *);
#endif