diff options
| author | Alexandra Ellwood <lxs@mit.edu> | 2007-06-07 21:50:39 +0000 |
|---|---|---|
| committer | Alexandra Ellwood <lxs@mit.edu> | 2007-06-07 21:50:39 +0000 |
| commit | 91984b0098d0452c3eed9c035357decad477a2ba (patch) | |
| tree | d4a4f9fc988fdd13fcb0b441cf238fcee9198b74 /src/ccapi/server/mac | |
| parent | 5c349b8456b511265ae6c84e40b6f275fe7acdb2 (diff) | |
| download | krb5-91984b0098d0452c3eed9c035357decad477a2ba.tar.gz krb5-91984b0098d0452c3eed9c035357decad477a2ba.tar.xz krb5-91984b0098d0452c3eed9c035357decad477a2ba.zip | |
Removed cross-compilation uses of inline because they don't do
anything on our compilers and were interfering with the
Windows builds. If we need to we can revisit this later with
an actual profiling tool.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19571 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/ccapi/server/mac')
| -rw-r--r-- | src/ccapi/server/mac/ccs_os_pipe.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ccapi/server/mac/ccs_os_pipe.c b/src/ccapi/server/mac/ccs_os_pipe.c index c3e7542a6..d22ffe353 100644 --- a/src/ccapi/server/mac/ccs_os_pipe.c +++ b/src/ccapi/server/mac/ccs_os_pipe.c @@ -32,8 +32,8 @@ /* ------------------------------------------------------------------------ */ -inline cc_int32 ccs_os_pipe_copy (ccs_os_pipe_t *out_pipe, - ccs_os_pipe_t in_pipe) +cc_int32 ccs_os_pipe_copy (ccs_os_pipe_t *out_pipe, + ccs_os_pipe_t in_pipe) { cc_int32 err = ccNoError; @@ -48,16 +48,16 @@ inline cc_int32 ccs_os_pipe_copy (ccs_os_pipe_t *out_pipe, /* ------------------------------------------------------------------------ */ -inline cc_int32 ccs_os_pipe_release (ccs_os_pipe_t io_pipe) +cc_int32 ccs_os_pipe_release (ccs_os_pipe_t io_pipe) { return ccNoError; } /* ------------------------------------------------------------------------ */ -inline cc_int32 ccs_os_pipe_compare (ccs_os_pipe_t in_pipe, - ccs_os_pipe_t in_compare_to_pipe, - cc_uint32 *out_equal) +cc_int32 ccs_os_pipe_compare (ccs_os_pipe_t in_pipe, + ccs_os_pipe_t in_compare_to_pipe, + cc_uint32 *out_equal) { cc_int32 err = ccNoError; |
