27 lines
661 B
C
27 lines
661 B
C
/*
|
|
* Copyright (c) 2016 Mellanox Technologies, Inc.
|
|
* All rights reserved.
|
|
* Copyright (c) 2018 IBM Corporation. All rights reserved.
|
|
* Copyright (c) 2018 Intel, Inc. All rights reserved.
|
|
* Copyright (c) 2019 Research Organization for Information Science
|
|
* and Technology (RIST). All rights reserved.
|
|
* Copyright (c) 2021 Nanook Consulting All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef PRTE_H
|
|
#define PRTE_H
|
|
|
|
#include "prte_version.h"
|
|
|
|
/**
|
|
* Main body of prte functionality
|
|
*/
|
|
int prte(int argc, char *argv[]);
|
|
|
|
#endif
|