kputnum(): Export.
authorbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 25 Jan 2005 08:36:40 +0000 (08:36 +0000)
committerbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 25 Jan 2005 08:36:40 +0000 (08:36 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@358 38d2e660-2303-0410-9eaa-f027e97ec537

debug.h
drv/kdebug.c

diff --git a/debug.h b/debug.h
index 1ede2d7217158f00db113e48321f98f306a3054a..97f44e8125397c908fed4b3ae729e2faa4e7228b 100755 (executable)
--- a/debug.h
+++ b/debug.h
@@ -17,6 +17,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.9  2005/01/25 08:36:40  bernie
+ *#* kputnum(): Export.
+ *#*
  *#* Revision 1.8  2005/01/11 18:08:08  aleph
  *#* Add empty kdump definition for debug off
  *#*
                /* These are implemented in drv/kdebug.c */
                void kdbg_init(void);
                void kputchar(char c);
+               int kputnum(int num);
                void kdump(const void *buf, size_t len);
                void __init_wall(long *wall, int size);
 
 
        INLINE void kdbg_init(void) { /* nop */ }
        INLINE void kputchar(UNUSED_ARG(char, c)) { /* nop */ }
+       INLINE int kputnum(UNUSED_ARG(int, num)) { return 0; }
        INLINE void kputs(UNUSED_ARG(const char *, str)) { /* nop */ }
        INLINE void kdump(UNUSED_ARG(const void *, buf), UNUSED_ARG(size_t, len)) { /* nop */ }
 
index 48ff07a9de6e0ed78a4eee341504ea943ea04a1d..0b62ea65d1f63bc9bf7ebc47f916adbfa831b08f 100755 (executable)
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.20  2005/01/25 08:36:40  bernie
+ *#* kputnum(): Export.
+ *#*
  *#* Revision 1.19  2004/12/31 17:47:45  bernie
  *#* Rename UNUSED() to UNUSED_ARG().
  *#*
@@ -77,8 +80,9 @@
 
 #include <debug.h>
 #include <cpu.h>
-#include "hw.h"
-#include "config.h"
+#include <macros.h> /* for BV() */
+#include <config.h>
+#include <hw.h>
 
 #include <mware/formatwr.h> /* for _formatted_write() */
 
@@ -330,7 +334,7 @@ void PGM_FUNC(kputs)(const char * PGM_ATTR str)
 /*!
  * Cheap function to print small integers without using printf().
  */
-static int kputnum(int num)
+int kputnum(int num)
 {
        int output_len = 0;
        int divisor = 10000;