sftp-file-main.c 985 B

12345678910111213141516171819202122232425262728293031323334
  1. /* sftp-file-main.c -- SFTP file initialization.
  2. *
  3. * Copyright (C) 2015 Artyom V. Poptsov <poptsov.artyom@gmail.com>
  4. *
  5. * This file is part of Guile-SSH.
  6. *
  7. * Guile-SSH is free software: you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation, either version 3 of the
  10. * License, or (at your option) any later version.
  11. *
  12. * Guile-SSH is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. #include <config.h>
  21. #include "threads.h"
  22. #include "sftp-file-type.h"
  23. void
  24. init_sftp_file (void)
  25. {
  26. init_sftp_file_type ();
  27. init_pthreads ();
  28. }
  29. /* sftp-file-main.c ends here. */