Revert "Add PACMAN_MIN()' and PACMAN_MAX()'"

This reverts commit aeeaa3524c.
This commit is contained in:
someordinaryidiot# 2024-09-16 00:41:57 +02:00
parent 6bd2c3378f
commit fed0c919ac

View file

@ -41,11 +41,6 @@
#define _n(str1, str2, ct) (char *)(ct == 1 ? str1 : str2) #define _n(str1, str2, ct) (char *)(ct == 1 ? str1 : str2)
#endif #endif
/* Macro to determine minimal value */
#define PACMAN_MIN(a, b) ((a) > (b) ? (b) : (a))
/* Macro to determine maximum value */
#define PACMAN_MAX(a, b) ((a) > (b) ? (a) : (b))
typedef struct _pm_target_t { typedef struct _pm_target_t {
alpm_pkg_t *remove; alpm_pkg_t *remove;
alpm_pkg_t *install; alpm_pkg_t *install;