Subversion Repositories HelenOS-historic

Rev

Rev 1018 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1018 Rev 1763
Line 25... Line 25...
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
#include "printf.h"
29
#include "printf.h"
30
#include "msim.h"
30
#include "stdarg.h"
-
 
31
#include <types.h>
31
 
32
 
32
static char digits[] = "0123456789abcdef";  /**< Hexadecimal characters */
33
typedef char *char_ptr;
33
 
34
 
-
 
35
static char digits[] = "0123456789abcdef";  /**< Hexadecimal characters */
34
 
36
 
35
void puts(const char *str)
37
void puts(const char *str)
36
{
38
{
37
    int len = 0;
39
    int len = 0;
38
   
40