Use __func__ instead of __FUNCTION__
diff --git a/usrsctplib/user_environment.h b/usrsctplib/user_environment.h
index 63ccdbf..7179f1f 100755
--- a/usrsctplib/user_environment.h
+++ b/usrsctplib/user_environment.h
@@ -96,7 +96,7 @@
 
 #define panic(...)                                  \
 	do {                                        \
-		SCTP_PRINTF("%s(): ", __FUNCTION__);\
+		SCTP_PRINTF("%s(): ", __func__);    \
 		SCTP_PRINTF(__VA_ARGS__);           \
 		SCTP_PRINTF("\n");                  \
 		terminate_non_graceful();           \