conflicting types for __putchar

Comments

2 comments

  • Avatar
    Jon Elliott

    The prototype for __putchar is now:

    int __putchar(int ch, __printf_tag_ptr ptr);

    All you should need to do is add the ptr parameter to your __putchar function definition.

    0
    Comment actions Permalink
  • Avatar
    Max Pohl

    perfect that works!!

    thank you so much!

    0
    Comment actions Permalink

Please sign in to leave a comment.