diff options
author | Damien George <damien.p.george@gmail.com> | 2015-09-15 16:24:13 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-09-15 16:24:13 +0100 |
commit | 0d6b2341b8f8e2723d1856ea129b8116e294ff3f (patch) | |
tree | 3f28d0eee863ea0ffaf4ab0e32d9224ff159786c | |
parent | 8b4fb4fe140e9cf57fcfa258d0d2d6fe19090fc5 (diff) | |
download | micropython-0d6b2341b8f8e2723d1856ea129b8116e294ff3f.tar.gz micropython-0d6b2341b8f8e2723d1856ea129b8116e294ff3f.zip |
pic16bit: Add basic unistd.h file since it's not provided by tool chain.
-rw-r--r-- | pic16bit/unistd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pic16bit/unistd.h b/pic16bit/unistd.h new file mode 100644 index 0000000000..5ed9cb4101 --- /dev/null +++ b/pic16bit/unistd.h @@ -0,0 +1,3 @@ +// XC16 compiler doesn't seem to have unistd.h file + +#define SEEK_CUR 1 |