aboutsummaryrefslogtreecommitdiff
path: root/lib/libstand/stand.h
diff options
context:
space:
mode:
authorDoug Rabson <dfr@FreeBSD.org>1998-10-19 09:08:40 +0000
committerDoug Rabson <dfr@FreeBSD.org>1998-10-19 09:08:40 +0000
commit5a911c6263debfd1a6466839bfa2865553049180 (patch)
treed7fe15976e266d0429084275f4f0692168838123 /lib/libstand/stand.h
parentd7449e132fc89f5d694a7d922c689caa18c81d5d (diff)
downloadsrc-5a911c6263debfd1a6466839bfa2865553049180.tar.gz
src-5a911c6263debfd1a6466839bfa2865553049180.zip
Implement a hook to allow us to reclaim the memory used by the first stage
of the bootstrap (the bit which loads /boot/loader).
Notes
Notes: svn path=/head/; revision=40520
Diffstat (limited to 'lib/libstand/stand.h')
-rw-r--r--lib/libstand/stand.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libstand/stand.h b/lib/libstand/stand.h
index 4199fd672e46..251e7e8de124 100644
--- a/lib/libstand/stand.h
+++ b/lib/libstand/stand.h
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: stand.h,v 1.6 1998/09/26 10:48:50 dfr Exp $
+ * $Id: stand.h,v 1.7 1998/10/06 19:23:57 msmith Exp $
* From $NetBSD: stand.h,v 1.22 1997/06/26 19:17:40 drochner Exp $
*/
@@ -181,6 +181,9 @@ extern void *calloc(size_t n1, size_t n2);
extern void *realloc(void *ptr, size_t size);
extern void *reallocf(void *ptr, size_t size);
extern void mallocstats(void);
+#ifdef __alpha__
+extern void free_region(void *start, void *end);
+#endif
/* disklabel support (undocumented, may be junk) */
struct disklabel;