summaryrefslogtreecommitdiff
path: root/pr/src/md/beos/bseg.c
blob: 0763e6f23c3a9fce8b89ecd952ab831d180d1841 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* -*- Mode: C++; c-basic-offset: 4 -*- */
/*
 * The contents of this file are subject to the Mozilla Public License
 * Version 1.0 (the "MPL"); you may not use this file except in
 * compliance with the MPL.  You may obtain a copy of the MPL at
 * http:// www.mozilla.org/MPL/
 *
 * Software distributed under the MPL is distributed on an "AS IS" basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the MPL
 * for the specific language governing rights and limitations under the
 * MPL.
 */

#include "primpl.h"

PR_IMPLEMENT(void)
    _MD_init_segs (void)
{
}

PR_IMPLEMENT(PRStatus)
    _MD_alloc_segment (PRSegment *seg, PRUint32 size, void *vaddr)
{
    return PR_NOT_IMPLEMENTED_ERROR;
}

PR_IMPLEMENT(void)
    _MD_free_segment (PRSegment *seg)
{
}