| 907 | #include "inttostr.h" |
| 908 | |
| 909 | static inline char * |
| 910 | timetostr (time_t t, char *buf) |
| 911 | { |
| 912 | return (TYPE_SIGNED (time_t) |
| 913 | ? imaxtostr (t, buf) |
| 914 | : umaxtostr (t, buf)); |
| 915 | } |
| 916 | |
| 917 | static inline char * |
| 918 | bad_cast (char const *s) |
no outgoing calls
no test coverage detected