1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 /*
6 * obj.c
7 * routines universal to all object files
8 */
9 #include <u.h>
10 #include <libc.h>
11 #include <bio.h>
12 #include <ar.h>
13 #include <mach.h>
14 #include "obj.h"
15
16 int _is2(char* x) { return 0; }
17 int _is7(char* x) { return 0; }
18 int _is9(char* x) { return 0; }
19 int _isk(char* x) { return 0; }
20 int _isq(char* x) { return 0; }
21 int _isv(char* x) { return 0; }
22 int _isu(char* x) { return 0; }
23 int _read2(Biobuf* b, Prog* p) { return 0; }
24 int _read7(Biobuf* b, Prog* p) { return 0; }
25 int _read9(Biobuf* b, Prog* p) { return 0; }
26 int _readk(Biobuf* b, Prog* p) { return 0; }
27 int _readq(Biobuf* b, Prog* p) { return 0; }
28 int _readv(Biobuf* b, Prog* p) { return 0; }
29 int _readu(Biobuf* b, Prog* p) { return 0; }