sys/dev/cfi: include sys/types.h as well

This will soon be a dependency for machine/atomic.h on mips with the
introduction of 64-bit atomics; the scope here is pretty narrow, so throw it
here in the header just before systm.h, which includes machine/atomic.h
This commit is contained in:
Kyle Evans 2020-01-02 22:52:31 +00:00
parent 137aed91e7
commit 85ccd84cb3

View file

@ -63,6 +63,7 @@
* CFE_API_* can be defined here as desired.
*/
/* Begin customization. */
#include <sys/types.h>
#include <sys/stdint.h> /* All of the typedefs. */
#include <sys/systm.h> /* strlen() prototype. */