Changeset 27dc170 in mainline for include/print.h


Ignore:
Timestamp:
2005-05-11T17:08:53Z (20 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
93ca46f
Parents:
d34657e
Message:

const qualifier for print functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/print.h

    rd34657e r27dc170  
    3636#define INT32   4
    3737
    38 static void print_str(char *str);
    39 static void print_fixed_hex(__native num, int width);
    40 static  void print_number(__native num, int base);
     38static void print_str(const char *str);
     39static void print_fixed_hex(const __native num, const int width);
     40static void print_number(const __native num, const int base);
    4141
    42 extern void putchar(char c);
    43 extern void printf(char *fmt, ...);
     42extern void putchar(const char c);
     43extern void printf(const char *fmt, ...);
    4444
    4545#endif
Note: See TracChangeset for help on using the changeset viewer.