summaryrefslogtreecommitdiff
path: root/conf/pam_conv1/pam_conv_l.l
diff options
context:
space:
mode:
Diffstat (limited to 'conf/pam_conv1/pam_conv_l.l')
-rw-r--r--conf/pam_conv1/pam_conv_l.l50
1 files changed, 0 insertions, 50 deletions
diff --git a/conf/pam_conv1/pam_conv_l.l b/conf/pam_conv1/pam_conv_l.l
deleted file mode 100644
index 25b67108..00000000
--- a/conf/pam_conv1/pam_conv_l.l
+++ /dev/null
@@ -1,50 +0,0 @@
-
-%{
-/*
- * $Id$
- *
- * Copyright (c) Andrew G. Morgan 1997 <morgan@parc.power.net>
- *
- * This file is covered by the Linux-PAM License (which should be
- * distributed with this file.)
- */
-
- static const char lexid[]=
- "$Id$\n"
- "Copyright (c) Andrew G. Morgan 1997 <morgan@parc.power.net>\n";
-
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#include <stdio.h>
-
-#include "pam_conv_y.h"
-
- extern int current_line;
-%}
-
-%%
-
-"#"[^\n]* ; /* skip comments (sorry) */
-
-"\\\n" {
- ++current_line;
-}
-
-([^\n\t ]|[\\][^\n])+ {
- return TOK;
-}
-
-[ \t]+ ; /* Ignore */
-
-<<EOF>> {
- return EOFILE;
-}
-
-[\n] {
- ++current_line;
- return NL;
-}
-
-%%