Fix some build errors

This commit is contained in:
Justine Tunney 2023-06-05 15:50:15 -07:00
parent 7558549d44
commit 5b908bc756
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
8 changed files with 19 additions and 11 deletions

View file

@ -25,8 +25,8 @@
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "libc/str/str.h"
#include "third_party/musl/rand48.h"
#include "libc/str/str.h"
asm(".ident\t\"\\n\\n\
Musl libc (MIT License)\\n\
@ -87,7 +87,7 @@ long mrand48(void)
return jrand48(__seed48);
}
unsigned short *seed48(unsigned short *s)
unsigned short *seed48(unsigned short s[3])
{
static unsigned short p[3];
memcpy(p, __seed48, sizeof p);