hyperlight-libc 0.16.0

This crate provides picolibc for Hyperlight guests. It builds the picolibc library and generates bindings to the libc types and functions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
Copyright (c) 1990 Regents of the University of California.
All rights reserved.
 */
/*
 * Andy Wilson, 2-Oct-89.
 */

#include <stdlib.h>

long
atol(const char *s)
{
    return strtol(s, NULL, 10);
}