Use consisten header guard, prefixed with UC_

This commit is contained in:
Nils O. Selåsdal
2013-10-13 17:37:28 +02:00
parent 52eb710db7
commit 48678a9858
23 changed files with 49 additions and 44 deletions
+3
View File
@@ -1,3 +1,5 @@
#ifndef UC_SATMATH_H_
#define UC_SATMATH_H_
#include <stdint.h>
/** Implementation of saturated operation on uintxx_t.
@@ -79,3 +81,4 @@ static inline uint64_t uc_sat_multu64(uint64_t a, uint64_t b)
return UC_SAT_MULT(a, b, uint64_t, UINT64_MAX);
}
#endif