diff options
author | Larry Wall <lwall@jpl-devvax.jpl.nasa.gov> | 1990-08-08 17:07:27 +0000 |
---|---|---|
committer | Larry Wall <lwall@jpl-devvax.jpl.nasa.gov> | 1990-08-08 17:07:27 +0000 |
commit | 62b28dd9eb2541847d5ce270cb7493fed626d1ef (patch) | |
tree | 1ab1c8c4532f980c8e291bf94cc1b073ce12b463 /usub | |
parent | e929a76b14922a7077596a747fc1fcd1bdd6b9ea (diff) | |
download | perl-62b28dd9eb2541847d5ce270cb7493fed626d1ef.tar.gz |
perl 3.0 patch #27 patch #19, continued
See patch #19.
Diffstat (limited to 'usub')
-rw-r--r-- | usub/usersub.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/usub/usersub.c b/usub/usersub.c new file mode 100644 index 0000000000..a8274fbd97 --- /dev/null +++ b/usub/usersub.c @@ -0,0 +1,17 @@ +/* $Header: usersub.c,v 3.0.1.1 90/08/09 04:06:10 lwall Locked $ + * + * $Log: usersub.c,v $ + * Revision 3.0.1.1 90/08/09 04:06:10 lwall + * patch19: Initial revision + * + */ + +#include "EXTERN.h" +#include "perl.h" + +int +userinit() +{ + init_curses(); +} + |