]> Cypherpunks repositories - gostls13.git/commitdiff
runtime/cgo: use just #include "textflag.h"
authorRuss Cox <rsc@golang.org>
Sat, 6 Sep 2014 19:27:39 +0000 (15:27 -0400)
committerRuss Cox <rsc@golang.org>
Sat, 6 Sep 2014 19:27:39 +0000 (15:27 -0400)
This will withstand the src/pkg/ to src/ move.

LGTM=r
R=iant, r
CC=golang-codereviews
https://golang.org/cl/134530044

src/pkg/runtime/cgo/asm_386.s
src/pkg/runtime/cgo/asm_amd64.s
src/pkg/runtime/cgo/asm_arm.s
src/pkg/runtime/cgo/asm_nacl_amd64p32.s
src/pkg/runtime/cgo/callbacks.c

index ab2f1d17a89e1231b009a334cd9d10f14dfe6c95..a895083f1bcb833db23595df63d4e102900e2c6f 100644 (file)
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-#include "../../../cmd/ld/textflag.h"
+#include "textflag.h"
 
 /*
  * void crosscall2(void (*fn)(void*, int32), void*, int32)
index 64f719ab1cc9c1b421d53bb00c0e0575892df864..6095bd13371f3e0e5ea92a640c38f63b4ffd6f8c 100644 (file)
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-#include "../../../cmd/ld/textflag.h"
+#include "textflag.h"
 
 /*
  * void crosscall2(void (*fn)(void*, int32), void*, int32)
index b989ab93300b1ec30d0799242505638a315496b7..6e57432e35f8feaa70af24131a465c080e8b0532 100644 (file)
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-#include "../../../cmd/ld/textflag.h"
+#include "textflag.h"
 
 /*
  * void crosscall2(void (*fn)(void*, int32), void*, int32)
index 377cf72a3a2e209fb02640373f0bcca5faef02ef..eb92014ed80c6c96622a4624900d36ee45439624 100644 (file)
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-#include "../../../cmd/ld/textflag.h"
+#include "textflag.h"
 
 /*
  * void crosscall2(void (*fn)(void*, int32), void*, int32)
index eb69255db4c23d5fe6c232d46ed005323f8a58b4..f074237d5f6440be137ed4a9edcd602988783d61 100644 (file)
@@ -4,7 +4,7 @@
 
 #include "../runtime.h"
 #include "../cgocall.h"
-#include "../../../cmd/ld/textflag.h"
+#include "textflag.h"
 
 // These utility functions are available to be called from code
 // compiled with gcc via crosscall2.