Skip to content

Commit 7e31115

Browse files
Fix building...
1 parent 8014956 commit 7e31115

File tree

28 files changed

+36
-35
lines changed

28 files changed

+36
-35
lines changed

examples/fileio_detect/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string.h>
1212

1313
/* Shared library headers -- depends on which ones you wish to use */
14-
#include <lib/fileioc.h>
14+
#include <fileioc.h>
1515

1616
/* Function prototypes */
1717
void printText(int8_t xpos, int8_t ypos, const char *text);

examples/fileio_factorize/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string.h>
1212

1313
/* Shared library headers - depends on which ones you wish to use */
14-
#include <lib/fileioc.h>
14+
#include <fileioc.h>
1515

1616
void prime_factors(unsigned int n);
1717

examples/fileio_os_vars/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string.h>
1212

1313
/* Shared library headers - depends on which ones you wish to use */
14-
#include <lib/fileioc.h>
14+
#include <fileioc.h>
1515

1616
/* Some function prototypes. Maybe in the future these functions will become a library */
1717
cplx_t Int24sToCplx(int real, int imag);

examples/fileio_read_write/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string.h>
1212

1313
/* Shared library headers -- depends on which ones you wish to use */
14-
#include <lib/fileioc.h>
14+
#include <fileioc.h>
1515

1616
/* Declare some strings and variables */
1717
const char nameAppVar[] = "AppVar";

examples/fileio_tokens/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string.h>
1212

1313
/* Shared library headers -- depends on which ones you wish to use */
14-
#include <lib/fileioc.h>
14+
#include <fileioc.h>
1515

1616
/* Declare some strings and variables */
1717
const char prgmName[] = "ABC";

examples/gfx_buffered_cube/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string.h>
1212

1313
/* Shared libraries */
14-
#include <lib/graphx.h>
14+
#include <graphx.h>
1515

1616
/* Put function prototypes here */
1717
void rotate(void);

examples/gfx_buffering/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string.h>
1212

1313
/* Shared libraries */
14-
#include <lib/graphx.h>
14+
#include <graphx.h>
1515

1616
/*
1717
* This tutorial is meant to be played around with to get a feeling for how buffering works

examples/gfx_char/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string.h>
1212

1313
/* Shared libraries */
14-
#include <lib/graphx.h>
14+
#include <graphx.h>
1515

1616
/* Use some random color as the transparent one */
1717
#define TRANSPARENT_COLOR 10

examples/gfx_clipping/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string.h>
1212

1313
/* Shared libraries */
14-
#include <lib/graphx.h>
14+
#include <graphx.h>
1515

1616
/* Use some random color as the transparent one */
1717
#define TRANSPARENT_COLOR 10

examples/gfx_floodfill/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string.h>
1212

1313
/* Shared libraries */
14-
#include <lib/graphx.h>
14+
#include <graphx.h>
1515

1616
/* Put function prototypes here */
1717

0 commit comments

Comments
 (0)