Skip to content

Commit 6689477

Browse files
committed
Remove unneeded linksign pragma
1 parent de20011 commit 6689477

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

src/stdio/File.sac

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,6 @@ external int, ... fscanf(File &STREAM, string FORMAT);
181181
external string fscans(File &STREAM, int MAX);
182182
#pragma linkobj "src/File/File.o"
183183
#pragma header "src/File/File.h"
184-
#pragma linksign [0,1,2]
185184
/*
186185
* Read the next character string from the input stream STREAM. Strings
187186
* are delimited by any whitespace character including the
@@ -192,7 +191,6 @@ external string fscans(File &STREAM, int MAX);
192191
external string fscanl(File &STREAM, int MAX);
193192
#pragma linkobj "src/File/File.o"
194193
#pragma header "src/File/File.h"
195-
#pragma linksign [0,1,2]
196194
/*
197195
* Read the next line from the input stream STREAM. Lines are character
198196
* strings delimited by any new-line or end-of-file symbol.
@@ -210,7 +208,6 @@ external bool feof(File &STREAM);
210208
#pragma linkobj "src/File/File.o"
211209
#pragma header "src/File/File.h"
212210
#pragma linkname "SACfeof"
213-
#pragma linksign [0,1]
214211
/*
215212
* Test the stream STREAM for having reached the end of the respective file.
216213
*/
@@ -219,7 +216,6 @@ external int fflush(File &STREAM);
219216
#pragma linkobj "src/File/File.o"
220217
#pragma header "src/File/File.h"
221218
#pragma linkname "SACfflush"
222-
#pragma linksign [0,1]
223219
/*
224220
* Write the buffer of a buffered output stream STREAM
225221
* to the respective file.
@@ -239,7 +235,6 @@ external int ftell(File &STREAM);
239235
#pragma linkobj "src/File/File.o"
240236
#pragma header "src/File/File.h"
241237
#pragma linkname "SACftell"
242-
#pragma linksign [0,1]
243238
/*
244239
* Return the offset of the current byte relative to
245240
* the beginning of the file associated with STREAM.

0 commit comments

Comments
 (0)