From: Rob Pike Date: Thu, 26 Jun 2008 22:27:21 +0000 (-0700) Subject: slight change to file names X-Git-Tag: weekly.2009-11-06~3612 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f28ec1af7f7d4bf707ee02d4e0def9c37ee369b8;p=gostls13.git slight change to file names SVN=124982 --- diff --git a/src/runtime/Makefile b/src/runtime/Makefile index d555132f46..2e51fa05b3 100644 --- a/src/runtime/Makefile +++ b/src/runtime/Makefile @@ -39,7 +39,7 @@ clean: %.$O: %.c $(CC) $< -sys_file.$O: sys_file.c $(OS_H) +sys_file.$O: sys_file.c sys_types.h $(OS_H) $(CC) -D$(GOARCH)_$(GOOS) $< %.$O: %.s diff --git a/src/runtime/sys_file.c b/src/runtime/sys_file.c index c4994947d8..f4d0c98216 100644 --- a/src/runtime/sys_file.c +++ b/src/runtime/sys_file.c @@ -3,7 +3,7 @@ // license that can be found in the LICENSE file. #include "runtime.h" -#include "sys_structs.h" +#include "sys_types.h" void sys·readfile(string filein, string fileout, bool okout) diff --git a/src/runtime/sys_structs.h b/src/runtime/sys_types.h similarity index 100% rename from src/runtime/sys_structs.h rename to src/runtime/sys_types.h