2008-06-30 20:05:53 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
echo "/* This file is autogenerated by $0 - do not edit */"
|
|
|
|
echo
|
|
|
|
|
|
|
|
while read atom
|
|
|
|
do
|
|
|
|
echo extern xcb_atom_t $atom\;
|
|
|
|
done < $1
|
2015-12-12 17:34:16 +01:00
|
|
|
|
|
|
|
# vim: filetype=sh:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|