2012-01-31 19:14:44 -07:00
|
|
|
// Copyright 2012 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "/sys/include/ctype.h"
|
2014-02-13 12:06:41 -07:00
|
|
|
#include "fmt.h"
|
|
|
|
#include "utf.h"
|
|
|
|
#include "libc_plan9.h"
|
2012-01-31 19:14:44 -07:00
|
|
|
|
|
|
|
char* getgoos(void);
|
|
|
|
char* getgoarch(void);
|
|
|
|
char* getgoroot(void);
|
|
|
|
char* getgoversion(void);
|
2013-01-11 17:58:46 -07:00
|
|
|
char* getgoarm(void);
|
|
|
|
char* getgo386(void);
|
2013-03-30 05:05:00 -06:00
|
|
|
char* getgoextlinkenabled(void);
|
2013-01-11 17:58:46 -07:00
|
|
|
|
|
|
|
void flagcount(char*, char*, int*);
|
|
|
|
void flagint32(char*, char*, int32*);
|
|
|
|
void flagint64(char*, char*, int64*);
|
|
|
|
void flagstr(char*, char*, char**);
|
|
|
|
void flagparse(int*, char***, void (*usage)(void));
|
|
|
|
void flagfn0(char*, char*, void(*fn)(void));
|
|
|
|
void flagfn1(char*, char*, void(*fn)(char*));
|
|
|
|
void flagfn2(char*, char*, void(*fn)(char*, char*));
|
|
|
|
void flagprint(int);
|
2013-06-28 13:16:33 -06:00
|
|
|
|
|
|
|
// The libraries use size_t to avoid -Wconversion warnings from GCC
|
|
|
|
// when calling standard library functions like memcpy.
|
|
|
|
typedef unsigned long size_t;
|
2014-02-13 12:06:41 -07:00
|
|
|
|
|
|
|
// math.h
|
|
|
|
#define HUGE_VAL 1.79769313486231e+308
|