author | Rich Felker <dalias@aerifal.cx> | 2013年06月28日 23:39:50 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2013年06月28日 23:39:50 -0400 |
commit | 553d566c3f7080cf1f339eebf715db7e5d0b0d76 (patch) | |
tree | ffd2f246d196fe6e434d5d9b027e5ddac848b5a6 | |
parent | aea79190326cf81d6c8ec81ab163137591c6dac8 (diff) | |
download | musl-553d566c3f7080cf1f339eebf715db7e5d0b0d76.tar.gz |
-rw-r--r-- | include/sys/shm.h | 2 |
diff --git a/include/sys/shm.h b/include/sys/shm.h index bca6ed62..c20f0334 100644 --- a/include/sys/shm.h +++ b/include/sys/shm.h @@ -47,6 +47,8 @@ struct shm_info { #endif }; +typedef unsigned long shmatt_t; + void *shmat(int, const void *, int); int shmctl(int, int, struct shmid_ds *); int shmdt(const void *); |