We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1f68d8 commit c3db3a6Copy full SHA for c3db3a6
src/stdlib_system.F90
@@ -725,7 +725,7 @@ function c_get_strerror() result(str)
725
726
interface
727
type(c_ptr) function strerror(len) bind(C, name='stdlib_strerror')
728
- import c_size_t, c_ptr, c_int
+ import c_size_t, c_ptr
729
implicit none
730
integer(c_size_t), intent(out) :: len
731
end function strerror
@@ -750,7 +750,6 @@ end function c_get_strerror
750
subroutine make_directory(path, mode, err)
751
character(len=*), intent(in) :: path
752
integer, intent(in), optional :: mode
753
- character, allocatable :: err_msg
754
type(state_type), optional, intent(out) :: err
755
756
integer :: code
@@ -787,7 +786,6 @@ end subroutine make_directory
787
786
!! Removes an empty directory
788
subroutine remove_directory(path, err)
789
790
791
792
793
0 commit comments