net: udp sending data routine
[quarnos.git] / scripts / mk_conf.pl
blob7200d8436b85949c66fff069f82e70f0692d256e
1 #!/usr/bin/perl
3 open(QCONF, "quarnconf.h");
4 @conf_ = <QCONF>;
6 $conf = "";
8 for $next (@conf_) {
9 $conf .= $next;
12 if ($conf =~ /#define $ARGV[0]\t\t(.)/) {
13 print $1;