;;;; mother modular generic compiler project
; (c)2001,2002/GPL Oskar Schirmer <oskar@scara.com>
; see file COPYING for GPL license details

; finite automaton scanner substitution list for ansi c (preprocessor)
; according to Harbison and Steele, "C A Reference Manual", ISBN 0-13-110933-2

(substitution-list
  '(
    ((prepcommand "define") (define ""))
    ((prepcommand "undef") (undef ""))
    ((prepcommand "include") (include ""))
    ((prepcommand "if") (if ""))
    ((prepcommand "ifdef") (ifdef ""))
    ((prepcommand "ifndef") (ifndef ""))
    ((prepcommand "else") (else ""))
    ((prepcommand "endif") (endif ""))
    ((prepcommand "line") (line ""))
    ((prepcommand "elif") (elif ""))
    ((prepcommand "pragma") (pragma ""))
    ((prepcommand "error") (error ""))
    ((prepword "defined") (defined ""))
    ((prepword) (word))
  )
)
