blob: a4a897cfe7580e43f64333fb23eab74aa2cabb78 [file] [log] [blame]
Rob Pikec87597d2008-06-25 21:19:05 -07001// 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 Pike00274a12009-08-14 10:46:04 -070013#include <mach.h>
Rob Pikec87597d2008-06-25 21:19:05 -070014#include "obj.h"
15
Russ Cox55db9fe2011-08-25 16:08:13 -040016int _is2(char* x) { USED(x); return 0; }
17int _is7(char* x) { USED(x); return 0; }
18int _is9(char* x) { USED(x); return 0; }
19int _isk(char* x) { USED(x); return 0; }
20int _isq(char* x) { USED(x); return 0; }
21int _isv(char* x) { USED(x); return 0; }
22int _isu(char* x) { USED(x); return 0; }
23int _read2(Biobuf* b, Prog* p) { USED(b); USED(p); return 0; }
24int _read7(Biobuf* b, Prog* p) { USED(b); USED(p); return 0; }
25int _read9(Biobuf* b, Prog* p) { USED(b); USED(p); return 0; }
26int _readk(Biobuf* b, Prog* p) { USED(b); USED(p); return 0; }
27int _readq(Biobuf* b, Prog* p) { USED(b); USED(p); return 0; }
28int _readv(Biobuf* b, Prog* p) { USED(b); USED(p); return 0; }
29int _readu(Biobuf* b, Prog* p) { USED(b); USED(p); return 0; }