• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Tera Termの個人的な作業用リポジトリ


Commit MetaInfo

Revisãofe203ae2f225e8b9abf92cf0378703ae64f71ebc (tree)
Hora2022-09-11 14:24:19
Autornmaya <nmaya@user...>
Commiternmaya

Mensagem de Log

MAX,MIN の定義を追加

git-svn-id: svn+ssh://svn.osdn.net/svnroot/ttssh2/trunk@10260 f5f01b69-1e22-0410-acbf-894ab4bd6246

Mudança Sumário

Diff

--- a/ttssh2/ttxssh/ssh.c
+++ b/ttssh2/ttxssh/ssh.c
@@ -68,6 +68,11 @@
6868 #include <fcntl.h>
6969 #endif
7070
71+#ifndef MAX
72+# define MAX(a,b) (((a)>(b))?(a):(b))
73+# define MIN(a,b) (((a)<(b))?(a):(b))
74+#endif
75+
7176 // SSH2 macro
7277 #ifdef _DEBUG
7378 #define SSH2_DEBUG