This commit is contained in:
pommicket 2022-02-15 22:41:18 -05:00
parent 95e7ec1ab5
commit 42911ccf67
4 changed files with 415 additions and 12 deletions

View file

@ -1,15 +1,9 @@
#define _STDLIB_DEBUG
#include <math.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stddef.h>
#include <ctype.h>
#include <locale.h>
int main(int argc, char **argv) {
setlocale(LC_ALL, "C");
struct lconv *c = localeconv();
printf("%s\n",c->negative_sign);
printf("%.16g\n", cosh(10));
return 0;
}