]> Cypherpunks repositories - gostls13.git/commitdiff
slight change to file names
authorRob Pike <r@golang.org>
Thu, 26 Jun 2008 22:27:21 +0000 (15:27 -0700)
committerRob Pike <r@golang.org>
Thu, 26 Jun 2008 22:27:21 +0000 (15:27 -0700)
SVN=124982

src/runtime/Makefile
src/runtime/sys_file.c
src/runtime/sys_types.h [moved from src/runtime/sys_structs.h with 100% similarity]

index d555132f46a5350dca481065d461aa275644875a..2e51fa05b3bdcff7030cf1713b45a370c776422d 100644 (file)
@@ -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
index c4994947d841a13259dd45742912ddea8f75ffd9..f4d0c982162a1a81715080af7181aec19ab0db2b 100644 (file)
@@ -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)