aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/proc.c
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-09-04 23:05:18 -0400
committerRuss Cox <rsc@golang.org>2014-09-04 23:05:18 -0400
commitcb040d59b945437cdca8c8cff525ebbb7261a217 (patch)
treeaa81ca071bc36bbec0cf484b68b19550fcaf96da /src/pkg/runtime/proc.c
parentd16a2ad09b373efe891f0acf9c27e0f2455e5590 (diff)
downloadgo-cb040d59b945437cdca8c8cff525ebbb7261a217.tar.xz
runtime: use new #include "textflag.h"
I did this just to clean things up, but it will be important when we drop the pkg directory later. LGTM=bradfitz R=r, bradfitz CC=golang-codereviews https://golang.org/cl/132600043
Diffstat (limited to 'src/pkg/runtime/proc.c')
-rw-r--r--src/pkg/runtime/proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/proc.c b/src/pkg/runtime/proc.c
index 3fecfe90e4..3c5e244a92 100644
--- a/src/pkg/runtime/proc.c
+++ b/src/pkg/runtime/proc.c
@@ -10,7 +10,7 @@
#include "race.h"
#include "type.h"
#include "mgc0.h"
-#include "../../cmd/ld/textflag.h"
+#include "textflag.h"
// Goroutine scheduler
// The scheduler's job is to distribute ready-to-run goroutines over worker threads.