9 lines
155 B
C
Executable file
9 lines
155 B
C
Executable file
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
double
|
|
strtod(const char *p, char **pp)
|
|
{
|
|
fprintf(stderr,"cannot print floating point\n");
|
|
exit(EXIT_FAILURE);
|
|
}
|