mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 03:17:41 +03:00
Don't consider that GCC extensions are supported
This commit is contained in:
parent
cc8548295d
commit
099525dfb7
1 changed files with 4 additions and 0 deletions
|
@ -5,6 +5,10 @@
|
|||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#if !defined(__GNUC__) && !defined(__attribute__)
|
||||
# define __attribute__(X)
|
||||
#endif
|
||||
|
||||
uint64_t le64_load(const unsigned char *p);
|
||||
|
||||
void le64_store(unsigned char *p, uint64_t x);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue