OSDN Git Service

lib-fs-resize: remove unused probe-related code
[android-x86/external-parted.git] / libparted / architecture.c
1  /*
2     libparted - a library for manipulating disk partitions
3     Copyright (C) 2007, 2009-2012 Free Software Foundation, Inc.
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 3 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 #include <config.h>
20 #include "architecture.h"
21
22 const PedArchitecture* ped_architecture;
23
24 void
25 ped_set_architecture ()
26 {
27         /* Set just once */
28         if (ped_architecture)
29                 return;
30
31 #ifdef linux
32         extern PedArchitecture ped_linux_arch;
33         const PedArchitecture* arch = &ped_linux_arch;
34 #elif defined(__BEOS__)
35         extern PedArchitecture ped_beos_arch;
36         const PedArchitecture* arch = &ped_beos_arch;
37 #else
38         extern PedArchitecture ped_gnu_arch;
39         const PedArchitecture* arch = &ped_gnu_arch;
40 #endif
41
42         ped_architecture = arch;
43 }