Remove types.h in favor of standard libs such as stdint, stddef

This commit is contained in:
Daniel Jobson 2024-09-12 10:26:25 +02:00
parent 1941a22007
commit 18ebdae030
No known key found for this signature in database
GPG key ID: 3707A9DBF4BB8F1A
13 changed files with 32 additions and 41 deletions

View file

@ -4,7 +4,8 @@
#ifndef BLAKE2S_H
#define BLAKE2S_H
#include "../types.h"
#include <stdint.h>
#include <stddef.h>
// state context
typedef struct {