blob: 6cb12b47c47a6a2be50b44754ad225b21d1530d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/perl -s -I lib/
##
##
##
## Copyright (c) 1999, Vipul Ved Prakash. All rights reserved.
## This code is free software; you can redistribute it and/or modify
## it under the same terms as Perl itself.
##
## $Id$
BEGIN { $| = 1; print "1..1\n"; }
END {print "not ok 1\n" unless $loaded;}
use Crypt::TripleDES;
$loaded = 1;
print "ok 1\n";
|