aboutsummaryrefslogtreecommitdiffstats
path: root/es/1
blob: 1b16703f337dd841c2372e2a7b0447315c665807 (plain)
1
../en/1
n value='topic/dietlibc'>topic/dietlibc Mageia Installer and base platform for many utilitiesThierry Vignaud [tv]
summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/rewind.c
blob: 48434a3165b0ca5ed97b958d1198ee5fb216b73b (plain)
1
2
3
4
5
6
#include <dietstdio.h>
#include <unistd.h>

void rewind( FILE *stream) {
  fseek(stream, 0L, SEEK_SET);
}