~john-koepi/ubuntu/trusty/golang/default

« back to all changes in this revision

Viewing changes to src/libmach/fakeobj.c

  • Committer: Bazaar Package Importer
  • Author(s): Ondřej Surý
  • Date: 2011-04-20 17:36:48 UTC
  • Revision ID: james.westby@ubuntu.com-20110420173648-ifergoxyrm832trd
Tags: upstream-2011.03.07.1
Import upstream version 2011.03.07.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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; }