Skip to content

Commit

Permalink
cryptoint: fix namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
janmojzis committed Jan 26, 2025
1 parent e90272d commit e607525
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cryptoint/crypto_int16.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define crypto_int16 int16_t
#define crypto_int16_unsigned uint16_t

#define crypto_int16_optblocker tinyssh_int16_optblocker
#define crypto_int16_optblocker dq_int16_optblocker
extern volatile crypto_int16 crypto_int16_optblocker;

__attribute__((unused))
Expand Down
2 changes: 1 addition & 1 deletion cryptoint/crypto_int32.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define crypto_int32 int32_t
#define crypto_int32_unsigned uint32_t

#define crypto_int32_optblocker tinyssh_int32_optblocker
#define crypto_int32_optblocker dq_int32_optblocker
extern volatile crypto_int32 crypto_int32_optblocker;

__attribute__((unused))
Expand Down
2 changes: 1 addition & 1 deletion cryptoint/crypto_int64.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define crypto_int64 int64_t
#define crypto_int64_unsigned uint64_t

#define crypto_int64_optblocker tinyssh_int64_optblocker
#define crypto_int64_optblocker dq_int64_optblocker
extern volatile crypto_int64 crypto_int64_optblocker;

__attribute__((unused))
Expand Down
2 changes: 1 addition & 1 deletion cryptoint/crypto_int8.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define crypto_int8 int8_t
#define crypto_int8_unsigned uint8_t

#define crypto_int8_optblocker tinyssh_int8_optblocker
#define crypto_int8_optblocker dq_int8_optblocker
extern volatile crypto_int8 crypto_int8_optblocker;

__attribute__((unused))
Expand Down
2 changes: 1 addition & 1 deletion cryptoint/crypto_uint16.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define crypto_uint16 uint16_t
#define crypto_uint16_signed int16_t

#define crypto_uint16_signed_optblocker tinyssh_uint16_signed_optblocker
#define crypto_uint16_signed_optblocker dq_uint16_signed_optblocker
extern volatile crypto_uint16_signed crypto_uint16_signed_optblocker;

__attribute__((unused))
Expand Down
2 changes: 1 addition & 1 deletion cryptoint/crypto_uint32.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define crypto_uint32 uint32_t
#define crypto_uint32_signed int32_t

#define crypto_uint32_signed_optblocker tinyssh_uint32_signed_optblocker
#define crypto_uint32_signed_optblocker dq_uint32_signed_optblocker
extern volatile crypto_uint32_signed crypto_uint32_signed_optblocker;

__attribute__((unused))
Expand Down
2 changes: 1 addition & 1 deletion cryptoint/crypto_uint64.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define crypto_uint64 uint64_t
#define crypto_uint64_signed int64_t

#define crypto_uint64_signed_optblocker tinyssh_uint64_signed_optblocker
#define crypto_uint64_signed_optblocker dq_uint64_signed_optblocker
extern volatile crypto_uint64_signed crypto_uint64_signed_optblocker;

__attribute__((unused))
Expand Down
2 changes: 1 addition & 1 deletion cryptoint/crypto_uint8.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define crypto_uint8 uint8_t
#define crypto_uint8_signed int8_t

#define crypto_uint8_signed_optblocker tinyssh_uint8_signed_optblocker
#define crypto_uint8_signed_optblocker dq_uint8_signed_optblocker
extern volatile crypto_uint8_signed crypto_uint8_signed_optblocker;

__attribute__((unused))
Expand Down

0 comments on commit e607525

Please sign in to comment.