diff options
| author | Rob Pike <r@golang.org> | 2013-08-06 21:49:03 +1000 |
|---|---|---|
| committer | Rob Pike <r@golang.org> | 2013-08-06 21:49:03 +1000 |
| commit | 82f5ca1ef05970fc271dc7e1cacaed8e27f65910 (patch) | |
| tree | ef3f2e422243e137c401926c9e8f6c44d3923d56 /src/pkg/runtime/runtime.h | |
| parent | 429a67e30033935d45e368d32b56dedb8c010fee (diff) | |
| download | go-82f5ca1ef05970fc271dc7e1cacaed8e27f65910.tar.xz | |
runtime: change int32 to intgo in findnull and findnullw
Update #6046.
This CL just does findnull and findnullw. There are other functions
to fix but doing them a few at a time will help isolate any (unlikely)
breakages these changes bring up in architectures I can't test
myself.
R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/12520043
Diffstat (limited to 'src/pkg/runtime/runtime.h')
| -rw-r--r-- | src/pkg/runtime/runtime.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/runtime/runtime.h b/src/pkg/runtime/runtime.h index e48b58a70e..ff3ecfaaaf 100644 --- a/src/pkg/runtime/runtime.h +++ b/src/pkg/runtime/runtime.h @@ -717,8 +717,8 @@ extern DebugVars runtime·debug; */ int32 runtime·strcmp(byte*, byte*); byte* runtime·strstr(byte*, byte*); -int32 runtime·findnull(byte*); -int32 runtime·findnullw(uint16*); +intgo runtime·findnull(byte*); +intgo runtime·findnullw(uint16*); void runtime·dump(byte*, int32); int32 runtime·runetochar(byte*, int32); int32 runtime·charntorune(int32*, uint8*, int32); |
