Convert to pragma once

This commit is contained in:
Jack Andersen
2018-10-06 17:37:09 -10:00
parent 5f2611702d
commit 0cdfd0ad9f
54 changed files with 54 additions and 162 deletions

View File

@@ -1,5 +1,4 @@
#ifndef BN_H
#define BN_H
#pragma once
#include "athena/Types.hpp"
namespace bignum
@@ -12,4 +11,3 @@ void exp(atUint8* d, const atUint8* a, const atUint8* N, atUint32 n, atUint8* e,
void inv(atUint8* d, atUint8* a, const atUint8* N, atUint32 n);
}
#endif // BN_H