aboutsummaryrefslogtreecommitdiffstats
path: root/src/gos/raw32.c
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2014-02-02 20:00:34 +0100
committerJoel Bodenmann <joel@unormal.org>2014-02-02 20:00:34 +0100
commitd299756abaf5813850ec732be3d71d96b9fa32fc (patch)
tree7133e28e8134af1daaa269785cb2d382d88fe7ba /src/gos/raw32.c
parente50b495c48648bf53621a4afc63682579387ba4f (diff)
parentd2de6c351785f323fd4b2a4e337a95bda4c9a626 (diff)
downloaduGFX-d299756abaf5813850ec732be3d71d96b9fa32fc.tar.gz
uGFX-d299756abaf5813850ec732be3d71d96b9fa32fc.tar.bz2
uGFX-d299756abaf5813850ec732be3d71d96b9fa32fc.zip
Merge branch 'master' into gfile
Diffstat (limited to 'src/gos/raw32.c')
-rw-r--r--src/gos/raw32.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/gos/raw32.c b/src/gos/raw32.c
index 5e11064c..61d09761 100644
--- a/src/gos/raw32.c
+++ b/src/gos/raw32.c
@@ -26,7 +26,8 @@ static void _gosThreadsInit(void);
* Initialise
*********************************************************/
-void _gosInit(void) {
+void _gosInit(void)
+{
// Set up the heap allocator
_gosHeapInit();
@@ -34,6 +35,11 @@ void _gosInit(void) {
_gosThreadsInit();
}
+void _gosDeinit(void)
+{
+ /* ToDo */
+}
+
/*********************************************************
* For WIn32 emulation - automatically add the tick functions
* the user would normally have to provide for bare metal.