mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 01:58:20 +00:00
Switch from header guards to pragma once
This commit is contained in:
parent
83180a2553
commit
c1f3fe7829
254 changed files with 260 additions and 1008 deletions
|
@ -4,8 +4,7 @@
|
|||
* Wrapper and helper functions for MD5/SHA digest algorithms.
|
||||
*/
|
||||
|
||||
#ifndef bro_digest_h
|
||||
#define bro_digest_h
|
||||
#pragma once
|
||||
|
||||
#include <openssl/md5.h>
|
||||
#include <openssl/sha.h>
|
||||
|
@ -113,5 +112,3 @@ inline unsigned char* internal_md5(const unsigned char* data, unsigned long len,
|
|||
hash_final(c, out);
|
||||
return out;
|
||||
}
|
||||
|
||||
#endif //bro_digest_h
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue