From: Anthony Martin Date: Sat, 1 Jun 2013 19:03:21 +0000 (-0700) Subject: build: remove special definition of Runemax on Plan 9 X-Git-Tag: go1.2rc2~1358 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b40d98562fe11dad2309aae940dbfcd97e466a26;p=gostls13.git build: remove special definition of Runemax on Plan 9 The Bell Labs distribution now supports 21-bit runes. R=golang-dev, akumar CC=golang-dev https://golang.org/cl/9249045 --- diff --git a/include/plan9/libc.h b/include/plan9/libc.h index dcecc7c8b8..9c86df0c77 100644 --- a/include/plan9/libc.h +++ b/include/plan9/libc.h @@ -2,16 +2,9 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -#define Runemax Plan9Runemax #include "/sys/include/libc.h" -#undef Runemax #include "/sys/include/ctype.h" -enum -{ - Runemax = 0x10FFFF, /* maximum rune value */ -}; - char* getgoos(void); char* getgoarch(void); char* getgoroot(void);