mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add missing prototypes for uuid_enc,dec_le,be() functions.
Pointy hat goes to me. MFC after: 3 days
This commit is contained in:
parent
5a2637d215
commit
8e1daad99d
1 changed files with 4 additions and 0 deletions
|
|
@ -54,6 +54,10 @@ void uuid_from_string(const char *, uuid_t *, uint32_t *);
|
|||
uint16_t uuid_hash(const uuid_t *, uint32_t *);
|
||||
int32_t uuid_is_nil(const uuid_t *, uint32_t *);
|
||||
void uuid_to_string(const uuid_t *, char **, uint32_t *);
|
||||
void uuid_enc_le(void *, const uuid_t *);
|
||||
void uuid_dec_le(const void *, uuid_t *);
|
||||
void uuid_enc_be(void *, const uuid_t *);
|
||||
void uuid_dec_be(const void *, uuid_t *);
|
||||
__END_DECLS
|
||||
|
||||
#endif /* _UUID_H_ */
|
||||
|
|
|
|||
Loading…
Reference in a new issue