summaryrefslogtreecommitdiff
path: root/userland/libc/stdlib/strtold.c
blob: 222464e88ea89b5d7cef44940e4a52d326912729 (plain)
1
2
3
4
5
6
7
8
9
#include <assert.h>
#include <stdlib.h>

long double strtold(const char *restrict nptr, char **restrict endptr) {
  // TODO
  // I will do this some other day
  assert(NULL);
  return 0;
}