#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;
}