[BACK]Return to misc.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/misc.h between version 1.88 and 1.89

version 1.88, 2020/10/03 09:22:26 version 1.89, 2020/11/08 22:37:24
Line 189 
Line 189 
 int      ask_permission(const char *, ...) __attribute__((format(printf, 1, 2)));  int      ask_permission(const char *, ...) __attribute__((format(printf, 1, 2)));
 struct notifier_ctx *notify_start(int, const char *, ...)  struct notifier_ctx *notify_start(int, const char *, ...)
         __attribute__((format(printf, 2, 3)));          __attribute__((format(printf, 2, 3)));
 void    notify_complete(struct notifier_ctx *);  void    notify_complete(struct notifier_ctx *, const char *, ...)
           __attribute__((format(printf, 2, 3)));
   
 #define MINIMUM(a, b)   (((a) < (b)) ? (a) : (b))  #define MINIMUM(a, b)   (((a) < (b)) ? (a) : (b))
 #define MAXIMUM(a, b)   (((a) > (b)) ? (a) : (b))  #define MAXIMUM(a, b)   (((a) > (b)) ? (a) : (b))

Legend:
Removed from v.1.88  
changed lines
  Added in v.1.89