Replace header ifdef guards with #pragma once

This commit is contained in:
Arceveti
2021-09-25 11:08:11 -07:00
parent 0649427337
commit 3a6c577a41
367 changed files with 651 additions and 1765 deletions

View File

@@ -1,5 +1,4 @@
#ifndef STRING_H
#define STRING_H
#pragma once
#include "PR/ultratypes.h"
@@ -10,5 +9,3 @@ int memcmp(const void *buf1, const void *buf2, size_t count);
void *memset(void* dst, int c, size_t count);
char *strcat(char *str1, const char *str2);
int strncmp(const char *str1, const char *str2, int n);
#endif