X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8e1a0e42045ef57ae82c00ed7af7767675709fb7..c3119f83962a5b1ef7bc8f79011698c83ce21cda:/src/surf/surf_c_bindings.cpp diff --git a/src/surf/surf_c_bindings.cpp b/src/surf/surf_c_bindings.cpp index 9e2e4c5548..300d1ad0d7 100644 --- a/src/surf/surf_c_bindings.cpp +++ b/src/surf/surf_c_bindings.cpp @@ -169,10 +169,6 @@ surf_action_t surf_host_close(sg_host_t host, surf_file_t fd){ return host->pimpl_->close(fd); } -int surf_host_unlink(sg_host_t host, surf_file_t fd){ - return host->pimpl_->unlink(fd); -} - surf_action_t surf_host_read(sg_host_t host, surf_file_t fd, sg_size_t size){ return host->pimpl_->read(fd, size); } @@ -181,11 +177,6 @@ surf_action_t surf_host_write(sg_host_t host, surf_file_t fd, sg_size_t size){ return host->pimpl_->write(fd, size); } -int surf_host_file_seek(sg_host_t host, surf_file_t fd, - sg_offset_t offset, int origin){ - return host->pimpl_->fileSeek(fd, offset, origin); -} - int surf_host_file_move(sg_host_t host, surf_file_t fd, const char* fullpath){ return host->pimpl_->fileMove(fd, fullpath); }