diff options
author | Jeff Trawick <trawick@apache.org> | 2002-01-05 13:38:44 +0000 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2002-01-05 13:38:44 +0000 |
commit | d4e811170e0c8996da75eec2e95eac543837c767 (patch) | |
tree | 9b660d6688ef6bd829feac0e0f7a2118e97109fd /shmem | |
parent | 18e90af994e1087231ad8b63c54df2eaced59d4b (diff) | |
download | apr-d4e811170e0c8996da75eec2e95eac543837c767.tar.gz |
get shmem.c to compile again after changes to apr_shmem.h
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@62707 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'shmem')
-rw-r--r-- | shmem/unix/shmem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shmem/unix/shmem.c b/shmem/unix/shmem.c index f1afe907a..c30595d3c 100644 --- a/shmem/unix/shmem.c +++ b/shmem/unix/shmem.c @@ -89,7 +89,7 @@ #include <kernel/OS.h> #endif -typedef struct apr_shmem_t { +struct apr_shmem_t { void *mem; void *curmem; apr_size_t length; @@ -104,7 +104,7 @@ typedef struct apr_shmem_t { #elif APR_USE_SHMEM_BEOS area_id areaid; #endif -} apr_shmem_t; +}; APR_DECLARE(apr_status_t) apr_shm_init(apr_shmem_t **m, apr_size_t reqsize, const char *filename, apr_pool_t *pool) |