]> Kevux Git Server - fll/commitdiff
Cleanup: Utilize 'void' inside of function declarations.
authorKevin Day <thekevinday@gmail.com>
Sun, 12 Dec 2021 01:14:05 +0000 (19:14 -0600)
committerKevin Day <thekevinday@gmail.com>
Sun, 12 Dec 2021 01:14:05 +0000 (19:14 -0600)
It seems that by adding 'void' (without a parameter variable name) instructs the compiler that this function is not allowed to take arguments.
When the parameters are empty such as '()', the compiler simply disable checking what the parameters are.

By adding void this results in instructing the compiler to verify that there are no parameters.
This increases the code integrity.

This change may be a problem for older C compilers.

level_0/f_capability/c/capability.c
level_0/f_capability/c/capability.h
level_0/f_environment/c/environment.c
level_0/f_environment/c/environment.h
level_0/f_pipe/c/pipe.c
level_0/f_pipe/c/pipe.h
level_0/f_thread/c/thread.c
level_0/f_thread/c/thread.h

index 4b012bf7b8d248bcd4816cdad1aefca62f822e6c..6257d9934a10c34fe85a5012343036f389dacf9a 100644 (file)
@@ -17,7 +17,7 @@ extern "C" {
   #endif // _di_f_capability_ambient_get_
 
   #ifndef _di_f_capability_ambient_reset_
-    f_status_t f_capability_ambient_reset() {
+    f_status_t f_capability_ambient_reset(void) {
       return F_status_set_error(F_implemented_not);
     }
   #endif // _di_f_capability_ambient_reset_
@@ -330,7 +330,7 @@ extern "C" {
   #endif // _di_f_capability_size_
 
   #ifndef _di_f_capability_supported_
-    bool f_capability_supported() {
+    bool f_capability_supported(void) {
       return F_false;
     }
   #endif // _di_f_capability_supported_
@@ -340,7 +340,7 @@ extern "C" {
 #if defined(_di_libcap_) || defined(_libcap_legacy_only_)
 
   #ifndef _di_f_capability_supported_ambient_
-    bool f_capability_supported_ambient() {
+    bool f_capability_supported_ambient(void) {
       return F_false;
     }
   #endif // _di_f_capability_supported_ambient_
@@ -406,7 +406,7 @@ extern "C" {
   #endif // _di_f_capability_ambient_get_
 
   #ifndef _di_f_capability_ambient_reset_
-    f_status_t f_capability_ambient_reset() {
+    f_status_t f_capability_ambient_reset(void) {
 
       if (cap_reset_ambient() == -1) {
         // The documentation doesn't explicitly describe this for "reset" but it can be implicitly inferred because they say "..all of the setting functions..".
@@ -1010,7 +1010,7 @@ extern "C" {
   #endif // _di_f_capability_size_
 
   #ifndef _di_f_capability_supported_
-    bool f_capability_supported() {
+    bool f_capability_supported(void) {
       return F_true;
     }
   #endif // _di_f_capability_supported_
@@ -1020,7 +1020,7 @@ extern "C" {
 #if !defined(_di_libcap_) && !defined(_libcap_legacy_only_)
 
   #ifndef _di_f_capability_supported_ambient_
-    bool f_capability_supported_ambient() {
+    bool f_capability_supported_ambient(void) {
       return CAP_AMBIENT_SUPPORTED();
     }
   #endif // _di_f_capability_supported_ambient_
index 77555273f0bae8802058e0581388d70057ce5639..f95e57559a9770fe86b55d4932bcd3e618b7320c 100644 (file)
@@ -87,7 +87,7 @@ extern "C" {
  * @see cap_reset_ambient()
  */
 #ifndef _di_f_capability_ambient_reset_
-  extern f_status_t f_capability_ambient_reset();
+  extern f_status_t f_capability_ambient_reset(void);
 #endif // _di_f_capability_ambient_reset_
 
 /**
@@ -869,7 +869,7 @@ extern "C" {
  *   FALSE otherwise.
  */
 #ifndef _di_f_capability_supported_
-  extern bool f_capability_supported();
+  extern bool f_capability_supported(void);
 #endif // _di_f_capability_supported_
 
 /**
@@ -901,7 +901,7 @@ extern "C" {
  * @see CAP_AMBIENT_SUPPORTED()
  */
 #ifndef _di_f_capability_supported_ambient_
-  extern bool f_capability_supported_ambient();
+  extern bool f_capability_supported_ambient(void);
 #endif // _di_f_capability_supported_ambient_
 
 /**
index b37e41d68df7bc363983a0456823909722e28425..964576b7de95bfd812810bf7ec60f18b40b32190 100644 (file)
@@ -6,7 +6,7 @@ extern "C" {
 #endif
 
 #ifndef _di_f_environment_clear_
-  f_status_t f_environment_clear() {
+  f_status_t f_environment_clear(void) {
     if (!clearenv()) {
       return F_none;
     }
index b0c8ff0dfbaf7f6cb21ff234e3979d9af673b52a..35ad1e0d7ef1d25d5b1d16783ede78302ed5659b 100644 (file)
@@ -37,7 +37,7 @@ extern "C" {
  * @see clearenv()
  */
 #ifndef _di_f_environment_clear_
-  extern f_status_t f_environment_clear();
+  extern f_status_t f_environment_clear(void);
 #endif // _di_f_environment_clear_
 
 /**
index 6ffc14dd9f7f4c12582e93090d7f44e4605589c9..dba59d9b4ed81cad144a6e0f868197f887ceeba5 100644 (file)
@@ -5,7 +5,7 @@ extern "C" {
 #endif
 
 #ifndef _di_f_pipe_input_exists_
-  f_status_t f_pipe_input_exists() {
+  f_status_t f_pipe_input_exists(void) {
     struct stat st_info;
 
     if (fstat(F_type_descriptor_input_d, &st_info) != 0) {
@@ -21,7 +21,7 @@ extern "C" {
 #endif // _di_f_pipe_input_exists_
 
 #ifndef _di_f_pipe_warning_exists_
-  f_status_t f_pipe_warning_exists() {
+  f_status_t f_pipe_warning_exists(void) {
     struct stat st_info;
 
     if (fstat(F_type_descriptor_warning_d, &st_info) != 0) {
@@ -37,7 +37,7 @@ extern "C" {
 #endif // _di_f_pipe_warning_exists_
 
 #ifndef _di_f_pipe_error_exists_
-  f_status_t f_pipe_error_exists() {
+  f_status_t f_pipe_error_exists(void) {
     struct stat st_info;
 
     if (fstat(F_type_descriptor_error_d, &st_info) != 0) {
@@ -53,7 +53,7 @@ extern "C" {
 #endif // _di_f_pipe_error_exists_
 
 #ifndef _di_f_pipe_debug_exists_
-  f_status_t f_pipe_debug_exists() {
+  f_status_t f_pipe_debug_exists(void) {
     struct stat st_info;
 
     if (fstat(F_type_descriptor_debug_d, &st_info) != 0) {
index f930f08be42682c9ddc446a60689d0c1af50040d..49f5e32f8b1bc6e8c29609407e8186adb5511192 100644 (file)
@@ -35,7 +35,7 @@ extern "C" {
  * @see fstat()
  */
 #ifndef _di_f_pipe_input_exists_
-  extern f_status_t f_pipe_input_exists();
+  extern f_status_t f_pipe_input_exists(void);
 #endif // _di_f_pipe_input_exists_
 
 /**
@@ -52,7 +52,7 @@ extern "C" {
  * @see fstat()
  */
 #ifndef _di_f_pipe_warning_exists_
-  extern f_status_t f_pipe_warning_exists();
+  extern f_status_t f_pipe_warning_exists(void);
 #endif // _di_f_pipe_warning_exists_
 
 /**
@@ -67,7 +67,7 @@ extern "C" {
  * @see fstat()
  */
 #ifndef _di_f_pipe_error_exists_
-  extern f_status_t f_pipe_error_exists();
+  extern f_status_t f_pipe_error_exists(void);
 #endif // _di_f_pipe_error_exists_
 
 /**
@@ -84,7 +84,7 @@ extern "C" {
  * @see fstat()
  */
 #ifndef _di_f_pipe_debug_exists_
-  extern f_status_t f_pipe_debug_exists();
+  extern f_status_t f_pipe_debug_exists(void);
 #endif // _di_f_pipe_debug_exists_
 
 #ifdef __cplusplus
index aaa4c34c94c0fea7c4e4c92f4a18069ab9a7fdbb..1f301fef58376f8a8163a2e6cea64e3894d780bf 100644 (file)
@@ -878,7 +878,7 @@ extern "C" {
 #endif // _di_f_thread_barriers_resize_
 
 #ifndef _di_f_thread_caller_
-  f_thread_id_t f_thread_caller() {
+  f_thread_id_t f_thread_caller(void) {
     return pthread_self();
   }
 #endif // _di_f_thread_caller_
@@ -924,7 +924,7 @@ extern "C" {
 #endif // _di_f_thread_cancel_state_set_
 
 #ifndef _di_f_thread_cancel_test_
-  f_status_t f_thread_cancel_test() {
+  f_status_t f_thread_cancel_test(void) {
 
     pthread_testcancel();
 
index 134ded672b99537fb9760a42e022ccd760b2dc74..ecf88bf11b35ca2a537f5c568d1859ddb52db545 100644 (file)
@@ -1162,7 +1162,7 @@ extern "C" {
  * @see pthread_self()
  */
 #ifndef _di_f_thread_caller_
-  extern f_thread_id_t f_thread_caller();
+  extern f_thread_id_t f_thread_caller(void);
 #endif // _di_f_thread_caller_
 
 /**
@@ -1218,7 +1218,7 @@ extern "C" {
  * @see pthread_testcancel()
  */
 #ifndef _di_f_thread_cancel_test_
-  extern f_status_t f_thread_cancel_test();
+  extern f_status_t f_thread_cancel_test(void);
 #endif // _di_f_thread_cancel_test_
 
 /**