Rob Pike | c87597d | 2008-06-25 21:19:05 -0700 | [diff] [blame] | 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> |
Rob Pike | 00274a1 | 2009-08-14 10:46:04 -0700 | [diff] [blame] | 13 | #include <mach.h> |
Rob Pike | c87597d | 2008-06-25 21:19:05 -0700 | [diff] [blame] | 14 | #include "obj.h" |
| 15 | |
Russ Cox | 55db9fe | 2011-08-25 16:08:13 -0400 | [diff] [blame] | 16 | int _is2(char* x) { USED(x); return 0; } |
| 17 | int _is7(char* x) { USED(x); return 0; } |
| 18 | int _is9(char* x) { USED(x); return 0; } |
| 19 | int _isk(char* x) { USED(x); return 0; } |
| 20 | int _isq(char* x) { USED(x); return 0; } |
| 21 | int _isv(char* x) { USED(x); return 0; } |
| 22 | int _isu(char* x) { USED(x); return 0; } |
| 23 | int _read2(Biobuf* b, Prog* p) { USED(b); USED(p); return 0; } |
| 24 | int _read7(Biobuf* b, Prog* p) { USED(b); USED(p); return 0; } |
| 25 | int _read9(Biobuf* b, Prog* p) { USED(b); USED(p); return 0; } |
| 26 | int _readk(Biobuf* b, Prog* p) { USED(b); USED(p); return 0; } |
| 27 | int _readq(Biobuf* b, Prog* p) { USED(b); USED(p); return 0; } |
| 28 | int _readv(Biobuf* b, Prog* p) { USED(b); USED(p); return 0; } |
| 29 | int _readu(Biobuf* b, Prog* p) { USED(b); USED(p); return 0; } |