source: trunk/minix/lib/fphook/fltpr.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 237 bytes
Line 
1#include <stdio.h>
2#include <stdlib.h>
3#include "../stdio/loc_incl.h"
4
5int _fp_hook = 1;
6
7char *
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.