X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=apps%2Fpem_mail.c;h=f85c7b1c831afff521957b221319c6730a783712;hp=e48c358f72f6b89c5717ce7b3497364bdcbeb63e;hb=f76d8c47470094a5cb14e937ef3c30db1d97389b;hpb=eda1f21f1af8b6f77327e7b37573af9c1ba73726 diff --git a/apps/pem_mail.c b/apps/pem_mail.c index e48c358f72..f85c7b1c83 100644 --- a/apps/pem_mail.c +++ b/apps/pem_mail.c @@ -1,5 +1,5 @@ /* apps/pem_mail.c */ -/* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) +/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written @@ -56,13 +56,14 @@ * [including the GNU Public Licence.] */ +#ifndef NO_RSA #include -#include "rsa.h" -#include "evp.h" -#include "objects.h" -#include "x509.h" -#include "err.h" -#include "pem.h" +#include +#include +#include +#include +#include +#include #include "apps.h" #undef PROG @@ -87,9 +88,7 @@ typedef struct lines_St struct lines_st *next; } LINES; -int main(argc, argv) -int argc; -char **argv; +int main(int argc, char **argv) { FILE *in; RSA *rsa=NULL; @@ -168,3 +167,4 @@ err: ERR_print_errors(bio_err); EXIT(1); } +#endif