repo.or.cz
/
minix-pkgsrc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixup fromcvs/togit conversion
[minix-pkgsrc.git]
/
sysutils
/
strace
/
patches
/
patch-al
blob
51fa30f8cdfb74e27716afe33cdc6ce1a8fef381
1
$NetBSD$
2
3
--- /dev/null 2007-04-26 23:20:40.000000000 -0400
4
+++ netbsd/mkerrno 2007-04-26 16:32:26.000000000 -0400
5
@@ -0,0 +1,9 @@
6
+#!/usr/bin/awk -f
7
+BEGIN {
8
+ printf("\t\"ERRNO0\",\n");
9
+}
10
+/^#define[ ]E/ {
11
+ if ($3 > 0) {
12
+ printf("\t\"%s\",\n", $2);
13
+ }
14
+}