summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2011-08-18 00:23:34 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2011-08-18 00:23:34 +0200
commit9e404235a8aa9a44c8ecde7fc82aac3616d00aa1 (patch)
tree3266a5280f65d935b72eab2faaa1530ad462ee81
parentcadc2b401d73f7f501a26058a18aff092fc79d48 (diff)
mention sys/soundcard.h instead of linux/soundcard.h
-rw-r--r--hurd/porting/guidelines.mdwn4
1 files changed, 2 insertions, 2 deletions
diff --git a/hurd/porting/guidelines.mdwn b/hurd/porting/guidelines.mdwn
index 8b7dcf02..fc71aa7c 100644
--- a/hurd/porting/guidelines.mdwn
+++ b/hurd/porting/guidelines.mdwn
@@ -279,9 +279,9 @@ With Python, you can use the [`errno` module](http://docs.python.org/library/err
err.errno == errno.ENOENT:
...
-## <a name="linux_headers"> Missing `linux/types.h`, `asm/types.h`, `linux/limits.h`, `asm/byteorder.h`, `sys/endian.h`, `asm/ioctl.h`, `asm/ioctls.h` </a>
+## <a name="linux_headers"> Missing `linux/types.h`, `asm/types.h`, `linux/limits.h`, `asm/byteorder.h`, `sys/endian.h`, `asm/ioctl.h`, `asm/ioctls.h`, `linux/soundcard.h` </a>
-These are often used (from lame rgrep results) instead of their standard equivalents: `sys/types.h` (or `stdint.h` for fixed-size types), `limits.h`, `endian.h`, `sys/ioctl.h`.
+These are often used (from lame rgrep results) instead of their standard equivalents: `sys/types.h` (or `stdint.h` for fixed-size types), `limits.h`, `endian.h`, `sys/ioctl.h`, `sys/soundcard.h`
## <a name="linux_features"> Missing `sys/*.h`, `linux/*.h`</a>