Skip to content

Commit

Permalink
CLN: Remove unused C fseek function
Browse files Browse the repository at this point in the history
  • Loading branch information
mferrera committed Nov 13, 2023
1 parent 19562dc commit 3b210d9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
3 changes: 0 additions & 3 deletions src/clib/xtg/libxtg.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,6 @@ xtg_fopen(const char *filename, const char *mode);
FILE *
xtg_fopen_bytestream(char *swig_bytes, long swig_bytes_len, const char *mode);

int
xtg_fseek_start(FILE *fhandle);

int
xtg_fflush(FILE *fhandle);

Expand Down
5 changes: 0 additions & 5 deletions src/clib/xtg/xtg_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,6 @@ xtg_fopen_bytestream(char *stream, long nstream, const char *mode)
}
#endif

int
xtg_fseek_start(FILE *fhandle)
{
return fseek(fhandle, 0, SEEK_SET);
}

int
xtg_fflush(FILE *fhandle)
Expand Down

0 comments on commit 3b210d9

Please sign in to comment.