mirror of
https://github.com/kenshineto/kern.git
synced 2025-04-21 20:57:25 +00:00
14 lines
164 B
C
14 lines
164 B
C
/**
|
|
* @file fpu.h
|
|
*
|
|
* @author Freya Murphy <freya@freyacat.org>
|
|
*
|
|
* FPU functions
|
|
*/
|
|
|
|
#ifndef FPU_H_
|
|
#define FPU_H_
|
|
|
|
void fpu_init(void);
|
|
|
|
#endif /* fpu.h */
|