Subversion Repositories HelenOS

Rev

Rev 2071 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2071 Rev 2465
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
/** @addtogroup generic
-
 
30
 * @{
-
 
31
 */
-
 
32
/** @file
-
 
33
 */
-
 
34
 
29
#ifndef BOOT_PRINTF_H_
35
#ifndef BOOT_PRINTF_H_
30
#define BOOT_PRINTF_H_
36
#define BOOT_PRINTF_H_
31
 
37
 
32
#define INT8    1
38
#define INT8    1
33
#define INT16   2
39
#define INT16   2
Line 38... Line 44...
38
extern void printf(const char *fmt, ...);
44
extern void printf(const char *fmt, ...);
39
 
45
 
40
extern void write(const char *str, const int len);
46
extern void write(const char *str, const int len);
41
 
47
 
42
#endif
48
#endif
-
 
49
 
-
 
50
/** @}
-
 
51
 */