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:
parent
1b20521e5c
commit
0930f2614c
2 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@
|
|||
#ifndef __AESLIB_H__
|
||||
#define __AESLIB_H__
|
||||
|
||||
#include <fp_internal.h>
|
||||
#include <fprint.h>
|
||||
|
||||
struct aes_regwrite {
|
||||
unsigned char reg;
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#ifndef __ASSEMBLING_H__
|
||||
#define __ASSEMBLING_H__
|
||||
|
||||
#include <fp_internal.h>
|
||||
#include <fprint.h>
|
||||
|
||||
struct fpi_frame {
|
||||
int delta_x;
|
||||
|
|
Loading…
Reference in a new issue