File: firstinclude.sed

package info (click to toggle)
cssc 1.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 11,368 kB
  • sloc: cpp: 39,446; ansic: 17,403; sh: 11,328; python: 3,923; makefile: 1,929; perl: 342; awk: 15; sed: 15
file content (19 lines) | stat: -rw-r--r-- 292 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/^ *# *include ["<].*[">]/ {
s/^ *# *include ["<]\(.*\)[">]/\1/ 
t YESREALLY
i\
Internal error - regexes are inconsistent
q
: YESREALLY
#s/^\(config\|cssc\).h$//
s/^config\.h$//
t OK
=
i\
config.h should be #included first
: OK
# q with an exit code is a GNU extension, don't use it.
q
}