universeodon.com is part of the decentralized social network powered by Mastodon.
Be one with the #fediverse. Join millions of humans building, creating, and collaborating on Mastodon Social Network. Supports 1000 character posts.

Administered by:

Server stats:

3.4K
active users

Learn more

#if

8 posts8 participants2 posts today

#Still

#NotInSpace...!

#Quote: "Bezos’s Amazon donated $1m to Trump’s most recent inauguration, and he intervened during the 2024 election to stop the Washington Post, the newspaper he owns, from endorsing Kamala Harris; the Trump administration, for its part, just awarded Blue Origin a contract worth more than $2bn."

#That is #Quite the #ReturnOnInvestment; #IF by #Investment, you also include #Bribery and #Corruption...

🧙⚔️🤖:wolfparty:🤖⚔️🧙 | 🪐🦹🚀🦄🚀🦹🪐

theguardian.com/commentisfree/

📢 Am 2 und 3. Juni 2025: 6. IFG-Days: Papier von gestern – Dateien für morgen: Mit KI und Portalen zu frei zugänglichen Informationen
Kommt vorbei und lasst uns über #Informationsfreiheit sprechen! @lfdi Tobias Keber: „Moderne Verwaltungen sind transparent. Dass in den Koalitionsverhandlungen auf Bundesebene erwogen wurde, Transparenz wieder abzuschaffen, zeigt, wie wichtig es ist, für dieses Recht einzustehen. Wir in Baden-Württemberg wollen die Transparenz stärken und ausbauen. Dafür setzen wir uns ein und sprechen bei den IFG-Days über Künstliche Intelligenz und digitale Portale, auf denen amtliche Informationen gebündelt und ressourcenschonend bereitgestellt werden können.“
baden-wuerttemberg.datenschutz
#KI #IF #IFG #LIFG #IFGDays

www.baden-wuerttemberg.datenschutz.de6. IFG-Days: Papier von gestern – Dateien für morgen | Der Landesbeauftragte für den Datenschutz und die Informationsfreiheit Baden-Württemberg

@thephd @fay59

> You, the vendor, parse things based on -std=... or /std:..., like everyone else.

So... basically if you have a C2y libc, you need an #if __STDC_VERSION__ gate around your printf declaration with different symbol versioning, to make sure that programs compiled with -std=C2y will fail to load on old systems whose libc doesn't support C2y, but still allow programs built with -std=C11 to work there?

@RustyCrab @prettygood

/* Exit with a status code indicating success.
   Copyright (C) 1999-2025 Free Software Foundation, Inc.

   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */

#include <config.h>
#include <stdio.h>
#include <sys/types.h>
#include "system.h"

/* Act like "true" by default; false.c overrides this.  */
#ifndef EXIT_STATUS
# define EXIT_STATUS EXIT_SUCCESS
#endif

#if EXIT_STATUS == EXIT_SUCCESS
# define PROGRAM_NAME "true"
#else
# define PROGRAM_NAME "false"
#endif

#define AUTHORS proper_name ("Jim Meyering")

void
usage (int status)
{
  printf (_("\
Usage: %s [ignored command line arguments]\n\
  or:  %s OPTION\n\
"),
          program_name, program_name);
  printf ("%s\n\n",
          _(EXIT_STATUS == EXIT_SUCCESS
            ? N_("Exit with a status code indicating success.")
            : N_("Exit with a status code indicating failure.")));
  fputs (HELP_OPTION_DESCRIPTION, stdout);
  fputs (VERSION_OPTION_DESCRIPTION, stdout);
  printf (USAGE_BUILTIN_WARNING, PROGRAM_NAME);
  emit_ancillary_info (PROGRAM_NAME);
  exit (status);
}

int
main (int argc, char **argv)
{
  /* Recognize --help or --version only if it's the only command-line
     argument.  */
  if (argc == 2)
    {
      initialize_main (&argc, &argv);
      set_program_name (argv[0]);
      setlocale (LC_ALL, "");
      bindtextdomain (PACKAGE, LOCALEDIR);
      textdomain (PACKAGE);

      /* Note true(1) will return EXIT_FAILURE in the
         edge case where writes fail with GNU specific options.  */
      atexit (close_stdout);

      if (STREQ (argv[1], "--help"))
        usage (EXIT_STATUS);

      if (STREQ (argv[1], "--version"))
        version_etc (stdout, PROGRAM_NAME, PACKAGE_NAME, Version, AUTHORS,
                     (char *) nullptr);
    }

  return EXIT_STATUS;
}
darkdork.devDarkDork.dev
#define#else#endif

I would love to use

swift package generate-documentation

but I sadly am building iOS packages and apps… and it just doesn't work^tm. Do they want me to add „#if os(iOS)" everywhere?!

Do they even use it themselves? 😩