diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2021-10-01 16:35:08 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2021-10-01 16:35:08 -0700 |
commit | b686b405c6a22b26e9b8082c92ed91513608bea3 (patch) | |
tree | 0000f671501863a8ee9b536ba869221d0f6710f9 /src/fps.h | |
parent | d1da5500261e96efe0ede06fbebb32f0e191f3c1 (diff) |
*: librototiller->libtil
Largely mechanical rename of librototiller -> libtil, but
introducing a til_ prefix to all librototiller (now libtil)
functions and types where a rototiller prefix was absent.
This is just a step towards a more libized librototiller, and til
is just a nicer to type/read prefix than rototiller_.
Diffstat (limited to 'src/fps.h')
-rw-r--r-- | src/fps.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,9 +1,9 @@ #ifndef _FPS_H #define _FPS_H -#include "fb.h" +#include "til_fb.h" int fps_setup(void); -void fps_print(fb_t *fb); +void fps_print(til_fb_t *fb); #endif |