zftape_syms.c 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * Copyright (C) 1997 Claus-Justus Heine
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation; either version 2, or (at your option)
  6. any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program; see the file COPYING. If not, write to
  13. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  14. *
  15. * $Source: /homes/cvs/ftape-stacked/ftape/zftape/zftape_syms.c,v $
  16. * $Revision: 1.3 $
  17. * $Date: 1997/10/05 19:19:14 $
  18. *
  19. * This file contains the symbols that the zftape frontend to
  20. * the ftape floppy tape driver exports
  21. */
  22. #include <linux/module.h>
  23. #include <linux/zftape.h>
  24. #include "../zftape/zftape-init.h"
  25. #include "../zftape/zftape-read.h"
  26. #include "../zftape/zftape-buffers.h"
  27. #include "../zftape/zftape-ctl.h"
  28. /* zftape-init.c */
  29. EXPORT_SYMBOL(zft_cmpr_register);
  30. /* zftape-read.c */
  31. EXPORT_SYMBOL(zft_fetch_segment_fraction);
  32. /* zftape-buffers.c */
  33. EXPORT_SYMBOL(zft_vmalloc_once);
  34. EXPORT_SYMBOL(zft_vmalloc_always);
  35. EXPORT_SYMBOL(zft_vfree);