diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-02-22 08:43:49 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-02-22 08:43:49 +0000 |
commit | 1fa657d77dde43a9c283a67bf86c57531f624437 (patch) | |
tree | d24267f79ae1c9c81ff0bde96adb4c85284ba32d /demos/Win32-MinGW/chcore.c | |
parent | 5954248a03a87a68cbb81ca4c830a31aa07d33e0 (diff) | |
download | ChibiOS-1fa657d77dde43a9c283a67bf86c57531f624437.tar.gz ChibiOS-1fa657d77dde43a9c283a67bf86c57531f624437.tar.bz2 ChibiOS-1fa657d77dde43a9c283a67bf86c57531f624437.zip |
Removed unused port functionality port_puts().
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@800 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/Win32-MinGW/chcore.c')
-rw-r--r-- | demos/Win32-MinGW/chcore.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/demos/Win32-MinGW/chcore.c b/demos/Win32-MinGW/chcore.c index 446508e3c..a2194336c 100644 --- a/demos/Win32-MinGW/chcore.c +++ b/demos/Win32-MinGW/chcore.c @@ -94,14 +94,6 @@ void ChkIntSources(void) { }
/**
- * Prints a message on the system console. - * @param msg pointer to the message - */
-__attribute__((fastcall))
-void port_puts(char *msg) {
-}
-
-/**
* Performs a context switch between two threads.
* @param otp the thread to be switched out
* @param ntp the thread to be switched in |