fixed missing cast in the non-i386 version of shmat (preparation for ports)
[musl] / src / stdio / rewind.c
1 #include <stdio.h>
2
3 void rewind(FILE *f)
4 {
5         fseek(f, 0, SEEK_SET);
6 }