lib: Use public header in helper files

aeslib.h and assembling.h don't need access to internal data structures,
so make them include the public fprint.h rather than the internal header
fp_internal.h.
This commit is contained in:
Bastien Nocera 2018-05-28 11:53:30 +02:00
parent 1b20521e5c
commit 0930f2614c
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@
#ifndef __AESLIB_H__
#define __AESLIB_H__
#include <fp_internal.h>
#include <fprint.h>
struct aes_regwrite {
unsigned char reg;

View file

@ -22,7 +22,7 @@
#ifndef __ASSEMBLING_H__
#define __ASSEMBLING_H__
#include <fp_internal.h>
#include <fprint.h>
struct fpi_frame {
int delta_x;