Conditionalize "#pragma mark" on TARGET_OS_MAC.
authorKen Raeburn <raeburn@mit.edu>
Thu, 1 Nov 2007 08:08:32 +0000 (08:08 +0000)
committerKen Raeburn <raeburn@mit.edu>
Thu, 1 Nov 2007 08:08:32 +0000 (08:08 +0000)
Don't use "#pragma warning" when not on Windows.  (In fact, the just-added uses
shouldn't be needed if the above conditional is done right, so one of them was
deleted.)

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20161 dc483132-0cff-0310-8789-dd5450dbe970

18 files changed:
src/ccapi/common/cci_array_internal.c
src/ccapi/common/cci_common.h
src/ccapi/common/cci_identifier.c
src/ccapi/lib/ccapi_ccache.c
src/ccapi/lib/ccapi_context.c
src/ccapi/lib/ccapi_context_change_time.c
src/ccapi/server/ccs_array.c
src/ccapi/server/ccs_array.h
src/ccapi/server/ccs_cache_collection.c
src/ccapi/server/ccs_ccache.c
src/ccapi/server/ccs_ccache_iterator.c
src/ccapi/server/ccs_credentials_iterator.c
src/ccapi/server/ccs_list.c
src/ccapi/server/ccs_list.h
src/ccapi/server/ccs_list_internal.c
src/ccapi/server/ccs_lock_state.c
src/ccapi/server/ccs_server.c
src/ccapi/server/ccs_types.h

index d4975ba85fbb54d0221bb0a9c537a7f1f167bd76..72f7f67a151ac051f377922d0710c1eee0d45d17 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Header$
  *
- * Copyright 2006 Massachusetts Institute of Technology.
+ * Copyright 2006, 2007 Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -90,7 +90,9 @@ static cc_int32 cci_array_resize (cci_array_t io_array,
     return cci_check_error (err); 
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -168,7 +170,9 @@ cci_array_object_t cci_array_object_at_index (cci_array_t io_array,
     }
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
     
 /* ------------------------------------------------------------------------ */
 
index d9a6d5c6210b14479e38d3a70e0bd9d21d87e2f6..56f21c3706017ebdd2082213525242f9242dffdc 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Header$
  *
- * Copyright 2006 Massachusetts Institute of Technology.
+ * Copyright 2006, 2007 Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -43,8 +43,6 @@
 #else
 #include "win-mac.h"
 #define VECTOR_FUNCTIONS_INITIALIZER
-/* hide "#pragma mark" warnings on Windows */
-#pragma warning (disable: 4068)
 #endif
 
 #define k_cci_context_initial_ccache_name "Initial default ccache"
index b6e9188920a0095cfbf942536cc457be80dec0b6..dac2e15449f695a1d9d98ae9e3874c410420702c 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Header$
  *
- * Copyright 2006 Massachusetts Institute of Technology.
+ * Copyright 2006, 2007 Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -151,7 +151,9 @@ cc_int32 cci_identifier_release (cci_identifier_t in_identifier)
     return cci_check_error (err);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -233,7 +235,9 @@ cc_int32 cci_identifier_is_initialized (cci_identifier_t  in_identifier,
     return cci_check_error (err);    
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
index b2ea37a1d4b6caab13f58571e6d3a6b58662e452..f168c0a3280fd29bd45213e10a0afe4862143919 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Header$
  *
- * Copyright 2006 Massachusetts Institute of Technology.
+ * Copyright 2006, 2007 Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -140,7 +140,9 @@ cc_int32 cci_ccache_write (cc_ccache_t  in_ccache,
     return cci_check_error (err);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
index 031c62a3a0ac795077723b5ed9d818f40b328f99..7a165cf98031234b63fb118722a809a2bc336b5d 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Header$
  *
- * Copyright 2006 Massachusetts Institute of Technology.
+ * Copyright 2006, 2007 Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -75,7 +75,9 @@ cc_context_f cci_context_f_initializer = {
 static cc_int32 cci_context_sync (cci_context_t in_context, 
                                   cc_uint32     in_launch);
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 MAKE_INIT_FUNCTION(cci_thread_init);
 
@@ -96,7 +98,9 @@ static int cci_thread_init (void)
     return err;
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -172,7 +176,9 @@ cc_int32 cc_initialize (cc_context_t  *out_context,
     return cci_check_error (err);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -739,7 +745,9 @@ cc_int32 ccapi_context_compare (cc_context_t  in_context,
     return cci_check_error (err);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
index fb5b7ddae87a836630cc1080a31aeae5c96d8cdf..f701c22fefcfd1e73b3396b688cb1e1945b412e2 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Header$
  *
- * Copyright 2006 Massachusetts Institute of Technology.
+ * Copyright 2006, 2007 Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -98,7 +98,9 @@ static cc_int32 cci_context_change_time_update_identifier (cci_identifier_t  in_
     return cci_check_error (err);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
index b648a36a7fab119b8cc6aa4669445c720ed2bad7..82aa0245433cb9373d43bd4bf060ee42a9c740f8 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Header$
  *
- * Copyright 2006 Massachusetts Institute of Technology.
+ * Copyright 2006, 2007 Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -80,7 +80,9 @@ cc_int32 ccs_client_array_remove (ccs_client_array_t io_array,
     return cci_array_remove (io_array, in_position);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -144,7 +146,9 @@ cc_int32 ccs_lock_array_move (ccs_lock_array_t  io_array,
     return cci_array_move (io_array, in_position, in_new_position, out_real_new_position);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -199,7 +203,9 @@ cc_int32 ccs_callback_array_remove (ccs_callback_array_t io_array,
     return cci_array_remove (io_array, in_position);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 
 /* ------------------------------------------------------------------------ */
index d4a6ba6015798eb9772088765c014d1b99db8b63..800e15de8182e4214d771cfd10cfdeb4fba1fc03 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Header$
  *
- * Copyright 2006 Massachusetts Institute of Technology.
+ * Copyright 2006, 2007 Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -45,7 +45,9 @@ cc_int32 ccs_client_array_insert (ccs_client_array_t io_array,
 cc_int32 ccs_client_array_remove (ccs_client_array_t io_array,
                                   cc_uint64          in_position);
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 cc_int32 ccs_lock_array_new (ccs_lock_array_t *out_array);
 
@@ -68,7 +70,9 @@ cc_int32 ccs_lock_array_move (ccs_lock_array_t  io_array,
                               cc_uint64         in_new_position,
                               cc_uint64        *out_real_new_position);
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 cc_int32 ccs_callback_array_new (ccs_callback_array_t *out_array);
 
@@ -86,7 +90,9 @@ cc_int32 ccs_callback_array_insert (ccs_callback_array_t io_array,
 cc_int32 ccs_callback_array_remove (ccs_callback_array_t io_array,
                                    cc_uint64           in_position);
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 cc_int32 ccs_callbackref_array_new (ccs_callbackref_array_t *out_array);
 
index f838c9ade675a2056f09f29784c90907c8537fc0..df21ccb506250ecf0e4a85461a7662c9b9c48c09 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Header$
  *
- * Copyright 2006 Massachusetts Institute of Technology.
+ * Copyright 2006, 2007 Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -126,7 +126,9 @@ cc_int32 ccs_cache_collection_compare_identifier (ccs_cache_collection_t  in_cac
     return cci_check_error (err);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -208,7 +210,9 @@ static cc_int32 ccs_cache_collection_invalidate_change_callback (ccs_callback_ow
     return cci_check_error (err);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -250,7 +254,9 @@ static cc_int32 ccs_cache_collection_find_ccache_by_name (ccs_cache_collection_t
     return cci_check_error (err);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -323,7 +329,9 @@ cc_int32 ccs_cache_collection_destroy_ccache (ccs_cache_collection_t  io_cache_c
     return cci_check_error (err);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -346,7 +354,9 @@ cc_int32 ccs_cache_collection_find_ccache_iterator (ccs_cache_collection_t  in_c
     return cci_check_error (err);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -388,7 +398,9 @@ cc_int32 ccs_cache_collection_find_credentials_iterator (ccs_cache_collection_t
     return cci_check_error (err);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -528,8 +540,10 @@ cc_int32 ccs_cache_collection_set_default_ccache (ccs_cache_collection_t  io_cac
     return cci_check_error (err);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
 #pragma mark -- IPC Messages --
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -981,7 +995,9 @@ static cc_int32 ccs_cache_collection_unlock (ccs_pipe_t             in_client_pi
     return cci_check_error (err);    
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
index 40b652de7b8adf91d74d4b551b5cdbe8d42c84b0..ca41a87567782cbffc59cc66d95427eb7a937298 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Header$
  *
- * Copyright 2006 Massachusetts Institute of Technology.
+ * Copyright 2006, 2007 Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -261,7 +261,9 @@ cc_int32 ccs_ccache_release (ccs_ccache_t io_ccache)
     return cci_check_error (err);    
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -303,7 +305,9 @@ cc_int32 ccs_ccache_compare_name (ccs_ccache_t  in_ccache,
     return cci_check_error (err);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -419,7 +423,9 @@ cc_int32 ccs_ccache_notify_default_state_changed (ccs_ccache_t           io_ccac
     return cci_check_error (err);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -442,7 +448,9 @@ cc_int32 ccs_ccache_find_credentials_iterator (ccs_ccache_t                in_cc
     return cci_check_error (err);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -479,8 +487,10 @@ cc_int32 ccs_ccache_write_name (ccs_ccache_t in_ccache,
     return cci_check_error (err);    
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
 #pragma mark -- IPC Messages --
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -1087,7 +1097,9 @@ static cc_int32 ccs_ccache_clear_kdc_time_offset (ccs_ccache_t           io_ccac
     return cci_check_error (err);    
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
index 77d83f1b0e60c2385962ac22407933bed61265e0..77d8eda4562510beb9acf35e805f7276473e973f 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Header$
  *
- * Copyright 2006 Massachusetts Institute of Technology.
+ * Copyright 2006, 2007 Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -100,7 +100,9 @@ static  cc_int32 ccs_ccache_iterator_clone (ccs_ccache_iterator_t  io_ccache_ite
     return cci_check_error (err);    
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
index e36c7f500a8136859dc79df6203701a9a2eeb5b4..b13a294b18a25f4c165affb73f2cac305bcd735f 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Header$
  *
- * Copyright 2006 Massachusetts Institute of Technology.
+ * Copyright 2006, 2007 Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -102,7 +102,9 @@ static  cc_int32 ccs_credentials_iterator_clone (ccs_credentials_iterator_t io_c
     return cci_check_error (err);    
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
index 2fd86da0ff6090687a9a28be9d334ffe10d42a6f..bc34fa25775fcd14485361d6362021b93872739d 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Header$
  *
- * Copyright 2006 Massachusetts Institute of Technology.
+ * Copyright 2006, 2007 Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -96,7 +96,9 @@ cc_int32 ccs_cache_collection_list_release (ccs_cache_collection_list_t io_list)
     return ccs_list_release (io_list);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -224,7 +226,9 @@ cc_int32 ccs_ccache_list_iterator_release (ccs_ccache_list_iterator_t io_list_it
     return ccs_list_iterator_release (io_list_iterator);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark-
+#endif
 
 /* ------------------------------------------------------------------------ */
 
index 435821a5b365beadb045bccbfbb72a68cf4fba4d..7346216974289563d45ec30e43a0d84eef2fb2c1 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Header$
  *
- * Copyright 2006 Massachusetts Institute of Technology.
+ * Copyright 2006, 2007 Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -47,7 +47,9 @@ cc_int32 ccs_cache_collection_list_remove (ccs_cache_collection_list_t io_list,
 
 cc_int32 ccs_cache_collection_list_release (ccs_cache_collection_list_t io_list);
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 cc_int32 ccs_ccache_list_new (ccs_ccache_list_t *out_list);
 
@@ -88,7 +90,9 @@ cc_int32 ccs_ccache_list_iterator_next (ccs_ccache_list_iterator_t  io_list_iter
 
 cc_int32 ccs_ccache_list_iterator_release (ccs_ccache_list_iterator_t io_list_iterator);
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 cc_int32 ccs_credentials_list_new (ccs_credentials_list_t *out_list);
 
index 2f99ebdb89c5b6fc6efce0d1c67b1f58d5ae6f03..d74a0ff9ef52cdcb0da102c6edcc4b2a9b42f369 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Header$
  *
- * Copyright 2006 Massachusetts Institute of Technology.
+ * Copyright 2006, 2007 Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -68,7 +68,9 @@ static cc_int32 ccs_list_iterator_update (ccs_list_iterator_t  io_list_iterator,
                                           ccs_list_action_enum in_action,
                                           cc_uint64 in_object_index);
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -406,7 +408,9 @@ cc_int32 ccs_list_push_front (ccs_list_t       io_list,
     return cci_check_error (err);    
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
index 3893fc9a161264ad4c6f0d54a7c69d9a3c91d1b6..516a1e26a5ebd5637f1f9a9b91cc355104331207 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Header$
  *
- * Copyright 2006 Massachusetts Institute of Technology.
+ * Copyright 2006, 2007 Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -89,7 +89,9 @@ cc_int32 ccs_lock_state_release (ccs_lock_state_t io_lock_state)
     return cci_check_error (err);    
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -214,7 +216,9 @@ static cc_int32 ccs_lock_status_grant_lock (ccs_lock_state_t io_lock_state,
     return cci_check_error (err);    
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -364,7 +368,9 @@ static cc_int32 ccs_lock_status_try_to_grant_pending_locks (ccs_lock_state_t io_
     return cci_check_error (err);    
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
index 2a4cb0f7befd72c4d4028aadba0e210e1884a729..5954d661c96003b6c56036db62138729dad166a2 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Header$
  *
- * Copyright 2006 Massachusetts Institute of Technology.
+ * Copyright 2006, 2007 Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -70,7 +70,9 @@ int main (int argc, const char *argv[])
     return cci_check_error (err) ? 1 : 0;
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -80,7 +82,9 @@ cc_int32 ccs_server_new_identifier (cci_identifier_t *out_identifier)
                                                 g_server_id));
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -192,7 +196,9 @@ cc_int32 ccs_server_client_is_valid (ccs_pipe_t  in_client_pipe,
     return cci_check_error (err);    
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
@@ -297,7 +303,9 @@ static cc_int32 ccs_server_request_demux (ccs_pipe_t              in_client_pipe
     return cci_check_error (err);
 }
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ------------------------------------------------------------------------ */
 
index 1c0870bf022d9be1a763f7f1d23f3be73a256af9..56056b99ed64b376c2683f1bbe164e7874c23523 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Header$
  *
- * Copyright 2006 Massachusetts Institute of Technology.
+ * Copyright 2006, 2007 Massachusetts Institute of Technology.
  * All Rights Reserved.
  *
  * Export of this software from the United States of America may
@@ -43,7 +43,9 @@ typedef struct cci_array_d *ccs_callbackref_array_t;
 
 typedef struct cci_array_d *ccs_lock_array_t;
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 /* ccs_os_pipe_t is IPC-specific so it's special cased here */
 
@@ -65,7 +67,9 @@ typedef int ccs_pipe_t; /* Unix domain socket */
 
 #endif
 #endif
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 struct ccs_callback_d;
 typedef struct ccs_callback_d *ccs_callback_t;
@@ -81,7 +85,9 @@ typedef struct ccs_list_iterator_d *ccs_ccache_list_iterator_t;
 typedef struct ccs_list_d *ccs_credentials_list_t;
 typedef struct ccs_list_iterator_d *ccs_credentials_list_iterator_t;
 
+#ifdef TARGET_OS_MAC
 #pragma mark -
+#endif
 
 struct ccs_client_d;
 typedef struct ccs_client_d *ccs_client_t;