From a0685d704c3a20dac47c15d7725cb24b9805bced Mon Sep 17 00:00:00 2001 From: dish Date: Sun, 31 Aug 2025 11:51:53 -0400 Subject: [PATCH] minimal-bootstrap.heirloom: Remove unneeded stubs These caused the build to fail, so they had to be removed. --- .../os-specific/linux/minimal-bootstrap/heirloom/stubs.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pkgs/os-specific/linux/minimal-bootstrap/heirloom/stubs.h b/pkgs/os-specific/linux/minimal-bootstrap/heirloom/stubs.h index 5aef8168180b..002855eaa079 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/heirloom/stubs.h +++ b/pkgs/os-specific/linux/minimal-bootstrap/heirloom/stubs.h @@ -28,15 +28,6 @@ int mkstemp(char *t) return fd; } -int putenv(char *string) -{ - return 0; -} - -char* realpath (char* path, char* resolved) { - return NULL; -} - #define strncasecmp(a,b,n) strncmp(strupr(a),strupr(b),n)