Symbol: TEST_UNCHANGED
regress/lib/libc/orientation/orientation_test.c
134
TEST_UNCHANGED(fwide(f, 0));
regress/lib/libc/orientation/orientation_test.c
137
TEST_UNCHANGED(feof(f));
regress/lib/libc/orientation/orientation_test.c
138
TEST_UNCHANGED(ferror(f));
regress/lib/libc/orientation/orientation_test.c
139
TEST_UNCHANGED(fileno(f));
regress/lib/libc/orientation/orientation_test.c
140
TEST_UNCHANGED(clearerr(f));
regress/lib/libc/orientation/orientation_test.c
143
TEST_UNCHANGED(fflush(f));
regress/lib/libc/orientation/orientation_test.c
144
TEST_UNCHANGED(fpurge(f));
regress/lib/libc/orientation/orientation_test.c
147
TEST_UNCHANGED(fgetpos(f, &pos));
regress/lib/libc/orientation/orientation_test.c
148
TEST_UNCHANGED(fgetpos(f, &pos); fsetpos(f, &pos));
regress/lib/libc/orientation/orientation_test.c
149
TEST_UNCHANGED(ftell(f));
regress/lib/libc/orientation/orientation_test.c
150
TEST_UNCHANGED(ftello(f));
regress/lib/libc/orientation/orientation_test.c
151
TEST_UNCHANGED(fseek(f, 1, SEEK_CUR));
regress/lib/libc/orientation/orientation_test.c
152
TEST_UNCHANGED(fseek(f, 1, SEEK_SET));
regress/lib/libc/orientation/orientation_test.c
153
TEST_UNCHANGED(fseek(f, 1, SEEK_END));
regress/lib/libc/orientation/orientation_test.c
154
TEST_UNCHANGED(fseeko(f, 1, SEEK_CUR));
regress/lib/libc/orientation/orientation_test.c
155
TEST_UNCHANGED(fseeko(f, 1, SEEK_SET));
regress/lib/libc/orientation/orientation_test.c
156
TEST_UNCHANGED(fseeko(f, 1, SEEK_END));
regress/lib/libc/orientation/orientation_test.c
157
TEST_UNCHANGED(rewind(f));
regress/lib/libc/orientation/orientation_test.c
160
TEST_UNCHANGED(setbuf(f, NULL));
regress/lib/libc/orientation/orientation_test.c
161
TEST_UNCHANGED(setbuf(f, buffer));
regress/lib/libc/orientation/orientation_test.c
162
TEST_UNCHANGED(setvbuf(f, buffer, _IONBF, BUFSIZ));
regress/lib/libc/orientation/orientation_test.c
163
TEST_UNCHANGED(setvbuf(f, buffer, _IOLBF, BUFSIZ));
regress/lib/libc/orientation/orientation_test.c
164
TEST_UNCHANGED(setvbuf(f, buffer, _IOFBF, BUFSIZ));
regress/lib/libc/orientation/orientation_test.c
165
TEST_UNCHANGED(setvbuf(f, NULL, _IONBF, 0));
regress/lib/libc/orientation/orientation_test.c
166
TEST_UNCHANGED(setvbuf(f, NULL, _IOLBF, 0));
regress/lib/libc/orientation/orientation_test.c
167
TEST_UNCHANGED(setvbuf(f, NULL, _IOFBF, 0));
regress/lib/libc/orientation/orientation_test.c
168
TEST_UNCHANGED(setbuffer(f, NULL, 0));
regress/lib/libc/orientation/orientation_test.c
169
TEST_UNCHANGED(setbuffer(f, buffer, BUFSIZ));
regress/lib/libc/orientation/orientation_test.c
170
TEST_UNCHANGED(setlinebuf(f));
regress/lib/libc/orientation/orientation_test.c
173
TEST_UNCHANGED(flockfile(f);funlockfile(f));
regress/lib/libc/orientation/orientation_test.c
174
TEST_UNCHANGED(ftrylockfile(f);funlockfile(f));