1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-09-25 06:34:07 -04:00

Insure CRYPT is defined before header inclusion.

This commit is contained in:
2013-09-19 14:58:20 +08:00
parent 34e2041d8e
commit fb6d6bd595
7 changed files with 16 additions and 8 deletions

4
file.h
View File

@@ -1,7 +1,9 @@
#ifndef _FILE_H_
#define _FILE_H_
#if CRYPT
#ifndef CRYPT
#error CRYPT should be defined.
#elif CRYPT
void cryptbufferkey( struct buffer *bp) ;
int set_encryption_key( int f, int n) ;
#endif