source:
trunk/minix/lib/fphook/fltpr.c@
10
Last change on this file since 10 was 9, checked in by , 13 years ago | |
---|---|
File size: 237 bytes |
Line | |
---|---|
1 | #include <stdio.h> |
2 | #include <stdlib.h> |
3 | #include "../stdio/loc_incl.h" |
4 | |
5 | int _fp_hook = 1; |
6 | |
7 | char * |
8 | _f_print(va_list *ap, int flags, char *s, char c, int precision) |
9 | { |
10 | fprintf(stderr,"cannot print floating point\n"); |
11 | exit(EXIT_FAILURE); |
12 | } |
Note:
See TracBrowser
for help on using the repository browser.