1!--------------------------------------------------------------------------------------------------! 2! DFTB+: general package for performing fast atomistic simulations ! 3! Copyright (C) 2006 - 2019 DFTB+ developers group ! 4! ! 5! See the LICENSE file for terms of usage and distribution. ! 6!--------------------------------------------------------------------------------------------------! 7 8module dftbp_io 9 use, intrinsic :: iso_fortran_env 10 implicit none 11 private 12 13 public :: stdin, stdout, stderr 14 15 16 !> File id of standard input 17 integer, parameter :: stdIn = input_unit 18 19 !> File id of standard output 20 integer, parameter :: stdOut = output_unit 21 22 !> File id of standard error 23 integer, parameter :: stdErr = error_unit 24 25end module dftbp_io 26