summaryrefslogtreecommitdiffstats
path: root/kcontrol/info/info_aix.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2026-01-16 15:26:43 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2026-01-16 15:26:43 +0900
commit1cc7602b43337d1f5d24415ef471bb39e6567b34 (patch)
tree29c01651adff35b0762ab0b7171b84e0f48fa1c7 /kcontrol/info/info_aix.cpp
parent623738e42c5878f7eccf86d5731efd038a5a775e (diff)
downloadtdebase-drop/hpux-support.tar.gz
tdebase-drop/hpux-support.zip
Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.drop/hpux-support
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kcontrol/info/info_aix.cpp')
-rw-r--r--kcontrol/info/info_aix.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/kcontrol/info/info_aix.cpp b/kcontrol/info/info_aix.cpp
index f4625813f..adae7c7fe 100644
--- a/kcontrol/info/info_aix.cpp
+++ b/kcontrol/info/info_aix.cpp
@@ -2,10 +2,6 @@
* info_aix.cpp
*
* Reza Arbab <arbab@austin.ibm.com>
- *
- * GetInfo_Partitions() and its helpers (get_fs_usage, fs_adjust_blocks)
- * taken from info_hpux.cpp.
- *
*/
#include <cf.h>
@@ -411,7 +407,7 @@ static long fs_adjust_blocks(long blocks, int fromsize, int tosize)
#define CONVERT_BLOCKS(b) fs_adjust_blocks ((b), fsd.f_bsize, 512)
static int get_fs_usage (char *path, long *l_total, long *l_avail)
-{ struct statfs fsd; /* 4.3BSD, SunOS 4, HP-UX, AIX. */
+{ struct statfs fsd; /* 4.3BSD, SunOS 4, AIX. */
unsigned long fsu_blocks,fsu_bfree,fsu_bavail;
*l_total = *l_avail = 0;